Re: RESOLVED: Private data in C/C++ generated classes - example

php.internals

Marcus Börger

20 years ago
Hello Andrew, yes helly that's me :-) Sunday, March 5, 2006, 9:56:38 PM, you wrote:
> 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:
> http://somabo.de/talks/
> 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(); > }
> ---
Best regards, Marcus