Log in

View Full Version : Including files with the same function names as existing funcs


DarkReaper
10-05-2006, 09:16 PM
Alright, so I've got a bit of a problem here. When I coded my existing CMS a few years ago I modeled some basics after vBulletin, as I was familiar with its code from modding it. So functions such as iif(), for example, are defined globally in my CMS.

With vB's new API feature, I want to recode the section of my code that creates a new vB thread for each news item added to the CMS so that it uses the API and everything is handled properly by vB. However, when I include the files necessary to do this, PHP complains that iif() is already defined.

Anyone have any ideas?

nico_swd
10-05-2006, 10:13 PM
Try require_once() instead of include().

Paul M
10-05-2006, 10:43 PM
You cannot define a function twice, so you will either have to remove one of the definitions or rename one.

JFYI, I don't think any vb code actually uses IIF anymore, even though they still define it.

DarkReaper
10-05-2006, 11:22 PM
Is there a way to sort of create a new PHP environment within the existing executing environment?

Paul M
10-06-2006, 03:47 AM
Why make an easy job hard ? just rename/remove either your function, or the vb function.