[PHP] is create_function slow?

2002-01-29 Thread Emile Bosch
Hi, is create function slow? Or has it a very significant slowdown compared to an include? i might want to create functions on the fly if it isn't tooo slow.. warm regards, Emile Bosch -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] is create_function slow?

2002-01-29 Thread Edward van Bilderbeek - Bean IT
including a file is nothing more then placing the text of the include file at the place you called include() so I think there's no reason why it should be quicker or slower... Edward Hi, is create function slow? Or has it a very significant slowdown compared to an include? i might want