diff options
Diffstat (limited to 'ext/spl/examples')
| -rwxr-xr-x | ext/spl/examples/findfile.inc | 2 | ||||
| -rwxr-xr-x | ext/spl/examples/tree.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/examples/findfile.inc b/ext/spl/examples/findfile.inc index 05d525a3f..02ab79243 100755 --- a/ext/spl/examples/findfile.inc +++ b/ext/spl/examples/findfile.inc @@ -33,7 +33,7 @@ class FindFile extends FilterIterator function __construct($path, $file) { $this->file = $file; - $list = split(';', $path); + $list = split(PATH_SEPARATOR, $path); if (count($list) <= 1) { parent::__construct(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path))); } else { diff --git a/ext/spl/examples/tree.php b/ext/spl/examples/tree.php index 6005263cc..7c630e823 100755 --- a/ext/spl/examples/tree.php +++ b/ext/spl/examples/tree.php @@ -37,4 +37,4 @@ foreach(new DirectoryGraphIterator($argv[1]) as $file) echo $file . "\n";
}
-?>
\ No newline at end of file +?>
|
