我創建使用別名靜態類class_alias功能: <?php
/**
* Class A
*/
class A {
static function doSomething() {
print 42;
}
}
// create alias, now calling B:: is the same like A::
class_alias('A', 'B
有沒有辦法將magic property標記爲已棄用?考慮下面,簡化代碼: /**
* Example class
*
* @property string $foo A foo variable.
*/
class Example {
/**
* Magic getter
*/
public function __get($var) {
在Symfony we can use PHPDoc註釋中,我想知道如何通過Symfony項目在PHPDoc塊中引用教程。 在the PHPDoc documentation example,我們看到,他們引用此文件phpDocumentor/phpDocumentor.pkg: /**
* Text with a normal @tutorial tag
* @tutorial phpDoc