Re: [PHP-DEV] Read PHP script from...

2004-05-10 Thread Srdjan Mijanovic
Thanks - the streams seem to be the solution. The basic problem is never with the "main file", but with includes. I will try and let the newsgroup know how this works. Regards, Srdjan Mijanovic -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/un

RE: [PHP-DEV] Read PHP script from...

2004-05-07 Thread Wez Furlong
You want to implement a wrapper for PHP streams: http://www.php-mag.net/itr/online_artikel/psecom,id,368,nodeid,114.html --Wez. > -Original Message- > From: Srdjan Mijanovic [mailto:[EMAIL PROTECTED] > Sent: 07 May 2004 18:52 > To: [EMAIL PROTECTED] > Subject: [PH

Re: [PHP-DEV] Read PHP script from...

2004-05-07 Thread Jevon Wright
Well, if you can get the file source out of the archive into a string, you could then eval() it. Hope this helps, Jevon - Original Message - From: "Srdjan Mijanovic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, May 08, 2004 5:51 AM Subject: [PHP-DEV

[PHP-DEV] Read PHP script from...

2004-05-07 Thread Srdjan Mijanovic
Hello, I'm quite new to this newsgroup, and I hope this is the right place to ask the question. I want to be able to read PHP source files from an archive. Script is not present on the hard disk, but inside a file / archive. To do this, I can supply the zend_stream object for reading and writing.