unread
Have compiled and run the sample suggested by Marcus Boerger,
(aka helly ??). Greatly appreciated.
For info, I couldn't find talk at http://talks.php.net, but found it at a
previous link he'd supplied, at:
http://talks.marcus-boerger.de
aka:
Example is at:
http://somabo.de/php/ext/util/
Simple test script below
// written by Andrew Mather - ie: not an authorised test!
// (Does work however - I leave it to you to change the target dir)
$path = "/home/andrew";
$u = new dirs($path);
$upath = $u->getPath();
echo("obj->path(): $upath\n<br>");
$u->next();
while($u->valid())
{
$cur = $u->current();
echo("Current: $cur\n<br>");
//nb: \n<br> - so I get a line break in both browser and shell...
$u->next();
}