Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.