Año del Copyright


/ Published in: PHP
Save to your folder(s)

Para mostrar el año del copyright en el pie de la página. Si son varios años, se muestran tipo "2004-2008".


Copy this code and paste it in your HTML
  1. <?php
  2.  
  3. // $year es el año en que se creó. Si dicho año es el actual, no se muestra nada más.
  4.  
  5. function summonCopyright($year)
  6. {
  7. $copyright = (($Y = intval(date('Y'))) > $year ) ? "-$Y" : '';
  8. return 'Copyright &copy;'.$year.$copyright.' | Design by ...';
  9. }
  10.  
  11. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.