>
Logo Luan Morina
Trego datën shqip me “setlocale”

e hn

23 dhjetor

2024

Java 52

Funksioni setlocale() në PHP përfshin informacion për gjuhën, kohën, monedhën dhe specifika të tjera që lidhen me një zonë gjeografike. Ja një shembull i thjeshtë i tregimi të datës shqip:

/* setlocale shqip */
setlocale(LC_ALL, 'sq_AL');

/* Tregimi i datës: e hn  23 dhjetor 2024 */
echo strftime("%A %e %B %Y");

PHP (kodi i demonstrimit)

<?php 
setlocale (LC_TIME, "sq_AL"); 
echo strftime("
<h1>%A</h1> 
<h2>%e %B</h2> 
<h3>%Y</h3>
<h4>Java %V</h4>
"); 
?>

CSS (stilet e demonstrimit)

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');

.mbajtesi-me-kalendar {
margin: 0 auto;
max-width: 260px;
font-family: "Oswald", sans-serif;
} 

.mbajtesi-me-kalendar {
margin: 0 auto;
max-width: 260px;
font-family: "Oswald", sans-serif;
} 

.kaptina-e-kalendarit {
display: flex;
flex-direction: row;
justify-content: space-around;
background-color: rgba(204, 84, 70, 0.64); 
border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-bottom: 4px solid #ffffff;
}

.kaptina-e-kalendarit span {
background-color: rgba(237, 240, 241, 0.64);
border: 4px solid rgba(255, 255, 255, 0.64); 
width: 20px;
height: 40px;
border-radius: 6px;
position: relative;
top: -20px;
}

.permbajtja-e-kalendarit {
background-color: rgba(255, 255, 255, 0.64);
min-height: 100px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
padding: 20px;
text-align: center;
text-transform: uppercase;
}

.permbajtja-e-kalendarit h1 {
font-size: .80em;
margin: 0 0 4px 0;
color: rgba(0, 0, 0, .5);
}
	
.permbajtja-e-kalendarit h2 {
font-size: 2.2em;
margin: 0 0 4px 0;
color: rgba(0, 0, 0, .9);
}
	
.permbajtja-e-kalendarit h3 {
font-size: 1.2em;
font-weight: normal;
color: rgba(0, 0, 0, .5);
}
	
.permbajtja-e-kalendarit h4 {
font-size: 0.9em;
font-weight: normal;
color: rgba(0, 0, 0, .4);
}
   Data shqip nga PHP