Jump to content

Error gives no line?


Monkuar

Recommended Posts

Fatal error: Cannot redeclare parse_message() (previously declared in C:\wamp\www\include\parser.php:5) in C:\wamp\www\include\parser.php on line 155

 

 

line 155:

 


}


 

all it is is a }

 

How in the world?

 

this just happended

25429965.jpg

 

 

 

79485284.jpg

 

 

line 5 is

 

function parse_message($text)

Link to comment
https://forums.phpfreaks.com/topic/257903-error-gives-no-line/
Share on other sites

That line with the } is the point where the re-definition is detected at.

 

Your problem is you are redeclaring the function, either because the definition is inside of a loop or you are including the file, where the definition is at, multiple times.

Link to comment
https://forums.phpfreaks.com/topic/257903-error-gives-no-line/#findComment-1321912
Share on other sites

  Quote

That line with the } is the point where the re-definition is detected at.

 

Your problem is you are redeclaring the function, either because the definition is inside of a loop or you are including the file, where the definition is at, multiple times.

 

Im not using parse_message function anywhere in my s.php (Where error is being called) ?

Link to comment
https://forums.phpfreaks.com/topic/257903-error-gives-no-line/#findComment-1321913
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.