我正在寻找一个很好的方法来获得自动完成和点击引用(不管是什么),在Zend Studio for
Eclipse中的代码标识符库中.
原文链接:https://www.f2er.com/php/130309.html例如,如果我这样做
$这 – >负载>库( ‘dx_auth’);
$这 – > dx_auth-> get_user_id();
zend工作室不知道是什么..
有这个sortof hacky的方式来做(见下面的source),但我觉得应该有一个更好的方式来做..
任何人都有什么想法?
// All of these are added so I get real auto complete // I don't have to worry about it causing any problems with deployment // as this file never gets called as I'm in PHP5 mode // Core CI libraries $config = new CI_Config(); $db = new CI_DB_active_record(); $email = new CI_Email(); $form_validation = new CI_Form_validation(); $input = new CI_Input(); $load = new CI_Loader(); $router = new CI_Router(); $session = new CI_Session(); $table = new CI_Table(); $unit = new CI_Unit_test(); $uri = new CI_URI();