[PHP] Re: Looking for a combo of include() and eval() ????

2002-03-06 Thread Philip Hallstrom
Looking around, I see someone else has submitted a feature request for this exact thing... http://bugs.php.net/bug.php?id=5435 Not that this helps *me*, but there's more than one of us :) On Wed, 6 Mar 2002, Philip Hallstrom wrote: Hi - Here's my dilema. include() will include a

[PHP] Re: Looking for a combo of include() and eval() ????

2002-03-06 Thread Philip Hallstrom
Well, it sort of helps me (dang my quick sends :) He has a workaround... for anyone else that needs it. function my_eval($my_eval_str) { $eval_str = ?; $eval_str .= $my_eval_str; $eval_str .= ?; return eval($eval_str); } On Wed, 6 Mar 2002, Philip Hallstrom