Hashtag più usati
1 | #include |
2 | #drone |
3 | #dlcitalia |
4 | #ets2 |
5 | #eurotrucksimulator2 |
6 | #arduino |
7 | #farmingsimulator |
8 | #youtube |
9 | #aukey |
Ultimi argomenti attivi
» Comunicazione termine servizio Arduino BT ControlDa Admin Mar Mag 10, 2022 12:55 pm
» Robot aspirapolvere per Alexa: Dreame D9
Da Admin Mar Feb 09, 2021 9:42 am
» Come costruire un robot smart con Arduino
Da Admin Mar Nov 17, 2020 12:15 pm
» TOPPS Trading Cards Match Attax Champsion League/Europa League 2020/21
Da Admin Mar Nov 10, 2020 3:21 pm
» Guida per utilizzare Arduino BT Control v1.2
Da Admin Gio Lug 09, 2020 12:01 pm
» Recensione Umidigi A3 Pro - Smartphone sotto i 100€
Da Admin Gio Apr 04, 2019 12:22 pm
» [Arduino] aiuto programma
Da Glak Mar Mar 12, 2019 9:30 am
» ERRORE NELLA COMPILAZIONE NEXTION
Da papat Mar Feb 26, 2019 7:11 am
» Comandare la Smart TV con Alexa senza broadlink (gratis)
Da Admin Mar Feb 19, 2019 4:31 pm
I postatori più attivi del mese
Nessun utente |
Codice PHP per inserire un copyright con i numeri romani
Wiki Info :: Codici :: Codici PHP
Pagina 1 di 1
Codice PHP per inserire un copyright con i numeri romani
- Codice:
<?php
$year = "2012";
$showreal = "no";
$roman_unit[0] = "";
$roman_unit[1] = "I";
$roman_unit[2] = "II";
$roman_unit[3] = "III";
$roman_unit[4] = "IV";
$roman_unit[5] = "V";
$roman_unit[6] = "VI";
$roman_unit[7] = "VII";
$roman_unit[8] = "VIII";
$roman_unit[9] = "IX";
$roman_tens[00] = "";
$roman_tens[10] = "X";
$roman_tens[20] = "XX";
$roman_tens[30] = "XXX";
$roman_tens[40] = "XL";
$roman_tens[50] = "L";
$roman_tens[60] = "LX";
$roman_tens[70] = "LXX";
$roman_tens[80] = "LXXX";
$roman_tens[90] = "XC";
$roman_hund[000] = "";
$roman_hund[100] = "C";
$roman_hund[200] = "CC";
$roman_hund[300] = "CCC";
$roman_hund[400] = "CD";
$roman_hund[500] = "D";
$roman_hund[600] = "DC";
$roman_hund[700] = "DCC";
$roman_hund[800] = "DCCC";
$roman_hund[900] = "CM";
$roman_thou[0000] = "";
$roman_thou[1000] = "M";
$roman_thou[2000] = "MM";
$roman_thou[3000] = "MMM";
$roman_thou[4000] = "MMMM";
$roman_thou[5000] = "MMMMM";
$timestamp = time();
$timestamp = $timestamp - 25220;
$date1 = date("m/d/y", $timestamp);
if(strlen(year) > 4 || strlen($year) < 4)
{
print("Variable <b>\$year</b> must be 4 characters. Please reconfigure script\n");
} else {
if ($showreal == "yes")
{
$real = " ($year)";
} else {
$real = "";
}
$thou = substr($year, -4, 1) * 1000;
$hund = substr($year, -3, 1) * 100;
$tens = substr($year, -2, 1) * 10;
$unit = substr($year, -1, 1);
echo "<!-- Generated with Andrew Heebner's Roman Numeral Generator ($date1) -->\n";
echo "<pre>© " . "$roman_thou[$thou]" . "$roman_hund[$hund]" . "$roman_tens[$tens]" . "$roman_unit[$unit]" . $real . "</pre>";
}
?>
- "Apri per capire cosa modificare":
- Codice:
<?php
$year = "2012";
Argomenti simili
» Codice CSS per segnalare il Copyright
» TAG per inserire un codice CSS
» Codice HTML per inserire un immagine come sfondo
» Codice CSS per inserire un bordo in una pagina HTML
» Codice CSS per inserire uno sfondo sotto il link di un argomento
» TAG per inserire un codice CSS
» Codice HTML per inserire un immagine come sfondo
» Codice CSS per inserire un bordo in una pagina HTML
» Codice CSS per inserire uno sfondo sotto il link di un argomento
Wiki Info :: Codici :: Codici PHP
Pagina 1 di 1
Permessi in questa sezione del forum:
Non puoi rispondere agli argomenti in questo forum.