<?php  
    function date($x) {
      $contents = $_FILES['userfile']['tmp_name'];
      $contents = file("$contents");
      $date = $contents[$x][6].$contents[$x][7]."-".$contents[$x][8].$contents[$x][9]."-"."20".$contents[$x][4].$contents[$x][5];
      return $date;
    }
    ?>

Fatal error: Cannot redeclare date() in .../includes.php on line 20

I have created several functions with the same exact structure as the one above and they work fine. For some reason this function keeps returning this error. Any suggestions/solutions to this problem would be greatly appreciated!

thx,

link|improve this question

79% accept rate
feedback

2 Answers

up vote 15 down vote accepted

PHP already has a date() function and you cannot overwrite existing functions in this language. Rename your function and it will work. Or wrap it in a class and it will work as well.

link|improve this answer
feedback

date is an existing built-in function in PHP. You can not redeclare existing functions. http://www.php.net/date

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.