How to declare the type for local variables using PHPDoc notation?
问题 I use Zend Studio to develop in PHP with CakePHP, and one of the problems with CakePHP is that the views all reference undeclared local variables. So for example, in the controller you would $this->set('job',new MyJobObject()); Then in the view you could echo $job->getName(); My problem is that Zend Studio can't perform autocomplete on $job , because it's type is unknown. Now there are PHPDoc tags that allow you to declare the type so that IDE's can perform autocomplete. The @var tag for