採取考慮以下PHP 5類: class SomeClass
{
//I want to document this property...
private $foo;
function __construct()
{
}
public function SetFoo($value)
{
$this->foo
任何機構都可以幫助我分離這個我需要像PHPDoc一樣解析和分離文本的數據示例。這是PHP源代碼。 的例子字符串: function one_to_tree() {
//bla bla bla
return FALSE;
}
function two_to_tree() {
//bla bla bla
return FALSE;
}
fun