I am pleased to announce that the Stagehand_PHP_Class_Parser 0.2.0 (beta) is now available.
Release Date: 2009-09-11
Added a new method: support for parsing from text content of PHP script. Stagehand_PHP_Class_Parser could parse only a PHP file in previous versions.
<?php
$code = <<<PHP_CODE
<?php
class ExampleClass
{
public $attribute;
public function doSomeMethod() { }
}
PHP_CODE;
$class = Stagehand_PHP_Class_Parser::parseContents($code);