123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef PHP_DIR_H
- #define PHP_DIR_H
- PHP_MINIT_FUNCTION(dir);
- PHP_RINIT_FUNCTION(dir);
- PHP_FUNCTION(opendir);
- PHP_FUNCTION(closedir);
- PHP_FUNCTION(chdir);
- #if defined(HAVE_CHROOT) && !defined(ZTS) && ENABLE_CHROOT_FUNC
- PHP_FUNCTION(chroot);
- #endif
- PHP_FUNCTION(getcwd);
- PHP_FUNCTION(rewinddir);
- PHP_NAMED_FUNCTION(php_if_readdir);
- PHP_FUNCTION(getdir);
- PHP_FUNCTION(glob);
- PHP_FUNCTION(scandir);
- #define PHP_SCANDIR_SORT_ASCENDING 0
- #define PHP_SCANDIR_SORT_DESCENDING 1
- #define PHP_SCANDIR_SORT_NONE 2
- #endif
|