“Automatische Jahre PHP” Code-Antworten

Automatische Jahre PHP

&copy; <?php echo date("Y"); ?>
Depressed Duck

Automatische Jahre PHP

&copy; 2008-<?php echo date("Y"); ?> // 2008-20??
Depressed Duck

Automatische Jahre PHP

<?php function auto_copyright($year = 'auto'){ ?>
   <?php if(intval($year) == 'auto'){ $year = date('Y'); } ?>
   <?php if(intval($year) == date('Y')){ echo intval($year); } ?>
   <?php if(intval($year) < date('Y')){ echo intval($year) . ' - ' . date('Y'); } ?>
   <?php if(intval($year) > date('Y')){ echo date('Y'); } ?>
<?php } ?> 
  
<?php auto_copyright(); // 2011?>

<?php auto_copyright("2010");  // 2010 - 2017 ?>
Depressed Duck

Ähnliche Antworten wie “Automatische Jahre PHP”

Fragen ähnlich wie “Automatische Jahre PHP”

Weitere verwandte Antworten zu “Automatische Jahre PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen