<?php
namespace Foo {
class Bar {
function boom() {
echo "BOOM!\n";
}
}
import Bar;
$b = new Bar;
$b->boom();
?>
The import parse error will cause a segfault.
-Sterling
--
"Programming today is a race between software engineers stirring to
build bigger and better idiot-proof programs, and the universe trying
to produce bigger and better idiots. So far, the universe is winning."
- Unknown
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
