Re: glob(path_pattern, GLOB_ONLYDIR)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Al wrote:
I can't use flag "GLOB_ONLYDIR" to work on a Linux, php4.4.4. I only want the dirs.

This works; sort of:
print_r(glob('../*',)); //It lists all the files AND directories. Yet it seems to ignore the lack of ".*" and finds xxx.yyy. That's OK, I can delete the files
remember this is linux you are talking about, not windows.

A '*' means anything, including a '.'



This fails:
print_r(glob('../*', GLOB_ONLYDIR));
well, double check your php version, because this should be built in whit the version that you are running.


And I get: "Warning: glob() expects parameter 2 to be long, string given in foo"

I can't find anything in the manual or when Googling.

Anyone can explain this for me?


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux