On Sunday 21 November 2004 20:25, Jerry Swanson wrote:
Please do not top post.
> What is wrong with this code? Why $input_str is empty.
>
> if ($handle = opendir('/home/test2/')) {
> echo "Directory handle: $handle\n";
> echo "Files:\n";
>
> while (false !== ($file = readdir($handle))) {
> if($file != "." && $file != ".."){
> $handle1 = fopen($file, "a+");
> $input_str = fread($handle1, filesize($file));
> echo "TEST".$input_str;
> }
> }
>
> }
The $file that you're trying to open is in the directory '/home/test2/', as
your working directory is not the same (getcwd()) you would have to specify
the full path to $file, ie prepend '/home/test2/'. You would have been able
to deduce this yourself had you looked at the php error log. Always develop
with:
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
<Knghtbrd> If I start writing essays about Free Software for slashdot,
please shoot me.
*/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php