#
bdeb45b3 |
| 14-Nov-2002 |
Stig Bakken |
Added PATH_SEPARATOR constant |
Revision tags: php-4.3.0RC1 |
|
#
253cecd4 |
| 13-Nov-2002 |
John Coggeshall |
Added GLOB_ONLYDIR and GLOB_BRACE for compatiable systems for the glob() function. Modified the layout and some minor logic in the experimental webHarness() test class Added
Added GLOB_ONLYDIR and GLOB_BRACE for compatiable systems for the glob() function. Modified the layout and some minor logic in the experimental webHarness() test class Added Whitespace accidently to array.c :)
show more ...
|
Revision tags: php-4.3.0pre2, RELEASE_1_0b1, php-4.3.0pre1 |
|
#
ef9b51bc |
| 07-Oct-2002 |
Rasmus Lerdorf |
readdir() was returning NULL instead of FALSE when used on an invalid directory handle. If someone forgot to check (as someone here did) that the opendir() succeeded, and then followed the d
readdir() was returning NULL instead of FALSE when used on an invalid directory handle. If someone forgot to check (as someone here did) that the opendir() succeeded, and then followed the documented usage by checking readdir()!==FALSE things would go awry. The ZEND_FETCH_RESOURCE macro explicitly does a RETURN_NULL on failure which is not what we want in this case, so work around it. No need to change it for the OO case since the object is not created if the opendir fails.
show more ...
|
#
5610e348 |
| 04-Oct-2002 |
Rasmus Lerdorf |
Kill a few more warnings |
Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003 |
|
#
ec340e03 |
| 28-Sep-2002 |
Yasuo Ohgaki |
It must be GLOB_NOCHECK instead of GLOB_NOMATCH. GLOB_NOMATCH does not make sense at all. |
#
08d3ad40 |
| 27-Sep-2002 |
foobar |
ws |
#
5797668c |
| 27-Sep-2002 |
Hartmut Holzgraefe |
/tmp/cvsmLUuXQ |
#
7dae78b7 |
| 27-Sep-2002 |
Yasuo Ohgaki |
No need to define GLOB_NOMATCH. |
#
1f227cd2 |
| 26-Sep-2002 |
Jan Lehnardt |
- GLOB_NOMATCH and GLOB_NOESCAPE are only defined in win32/glob.h - fixes build on FreeBSD 4.6 |
#
7d87baba |
| 26-Sep-2002 |
Yasuo Ohgaki |
Remove dup |
#
f5426838 |
| 26-Sep-2002 |
Sebastian Bergmann |
Fix ZTS build. Fix warning. |
#
1a2df34d |
| 26-Sep-2002 |
Hartmut Holzgraefe |
fix windows build |
#
0d815b57 |
| 26-Sep-2002 |
Hartmut Holzgraefe |
glob should now be ZTS/open_basedir/safe_mode aware (finally) |
#
a254506a |
| 11-Sep-2002 |
foobar |
ws fix |
Revision tags: RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2 |
|
#
149ad05b |
| 24-Aug-2002 |
Marcus Boerger |
php_error_docref #New conversion available at: http://docref.txt.marcus-boerger.de |
Revision tags: php-4.2.3RC1 |
|
#
b025bb10 |
| 13-Aug-2002 |
Rasmus Lerdorf |
Missing proto |
#
d820c177 |
| 13-Aug-2002 |
Rasmus Lerdorf |
dir() returns an instantiated object, not a class. |
Revision tags: dev |
|
#
a55c1228 |
| 29-Jul-2002 |
Edin Kadribasic |
Fixed bug #14657 (patch by Steph Fox) |
Revision tags: php-4.2.2 |
|
#
728f2de4 |
| 08-Jul-2002 |
Derick Rethans |
Unify error messages |
Revision tags: INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2, php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4 |
|
#
54469425 |
| 19-May-2002 |
Edin Kadribasic |
Added glob() support for windows. |
Revision tags: php-4.3.0dev-ZendEngine2 |
|
#
25a616d7 |
| 18-May-2002 |
Markus Fischer |
- Fix portability issues with empty results on Linux and FreeBSD, add safe_mode check and simplify code. # Hartmut, what was the VCWD check for ?! |
Revision tags: php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1, php-4.2.1RC2, php-4.2.1RC1, php-4.2.0 |
|
#
b10b24d5 |
| 16-Apr-2002 |
Wez Furlong |
Always initialize wrappers, regardless of PG(allow_url_fopen). Add is_url field to wrapper structure; the stream wrapper openers will disallow opening is is_url && !PG(allow_url_fopen). A
Always initialize wrappers, regardless of PG(allow_url_fopen). Add is_url field to wrapper structure; the stream wrapper openers will disallow opening is is_url && !PG(allow_url_fopen). Add infrastructure for stat($url) and opendir($url). Tidy up/centralize code that locates and instantiates wrappers for the various operations. Implement opendir for plain files. Make the PHP opendir and dir functions use the streams implementations. Add modelines for syntax highlighting the pear scripts in vim
show more ...
|
Revision tags: php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2 |
|
#
b00d9a5b |
| 21-Mar-2002 |
Hartmut Holzgraefe |
added fnmatch() and glob() functions could someone please check if i got the virtual dir stuff right? |
Revision tags: php-4.2.0RC1, help |
|
#
01505de0 |
| 06-Mar-2002 |
James E. Flemer |
(PHP opendir) Changed CHECKUID_ALLOW_ONLY_DIR to CHECKUID_ALLOW_ONLY_FILE so that relative paths (vs absolute) work correctly. |
#
787ce372 |
| 03-Mar-2002 |
James E. Flemer |
(PHP opendir) Added safe_mode checks on path. @- Added safe_mode checks for opendir(). (jflemer) |