Jump to content

[SOLVED] declared functions


cha0sriderx

Recommended Posts

is there a way to check and see if a function is declared without getting the error message?

 

the reason why i need to find out is because the function is declared in both index.php and view.php for my news system.  The error below is what i get when i go to the view page from the index(the function is declared on both pages), but when i reload the view page i get the error that the function isnt declared.

 

Fatal error: Cannot redeclare rbbc() (previously declared in /home/news/index.php:2) in /home/news/view.php on line 2

Link to comment
https://forums.phpfreaks.com/topic/70650-solved-declared-functions/
Share on other sites

When you include a file you could use 'include_once()' instead, because it actually looks like you've declared the function twice.

 

But if you want to check to see if a function does exist before using it use 'function_exists()', http://us3.php.net/manual/en/function.function-exists.php

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.