PHP

Data shqip nga PHP

e enjte

3 prill

2025

Java 14

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:

PHP

<?php 
/* setlocale shqip */
setlocale (LC_TIME, "sq_AL"); 

/* Tregimi i datës:  3 prill 2025 - e enjte  - java 14 */
echo utf8_encode(strftime("
<h1>%A</h1> 
<h2>%e %B</h2> 
<h3>%Y</h3>
<h4>Java %V</h4>
"));
?>
CSS (stilet e demonstrimit)
.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);
}