Eclipse中的Code Igniter 2.1自动完成/ IntelliSense

时间:2013-02-10 03:45:48

标签: eclipse codeigniter codeigniter-2 eclipse-pdt

我正在使用Eclipse PDT使用PHP Code Igniter进行编码。我想让自动完成工作。谁知道我怎么能做到这一点?我找到了一些在线教程,但没有成功。

3 个答案:

答案 0 :(得分:16)

你可以尝试这种方法

  1. 选择“项目” - > “属性”或“窗口” - > “偏好” - > “PHP”(全球使用)
  2. 选择“PHP包含路径”
  3. 点击“添加外部源文件夹”并指向下面的文件
  4. 重启eclipse
  5. 以下

    指向此文件的路径

    <强> ciautocomplete.php

    <?php
    
    /**
    * @property CI_DB_active_record $db
    * @property CI_DB_forge $dbforge
    * @property CI_Benchmark $benchmark
    * @property CI_Calendar $calendar
    * @property CI_Cart $cart
    * @property CI_Config $config
    * @property CI_Controller $controller
    * @property CI_Email $email
    * @property CI_Encrypt $encrypt
    * @property CI_Exceptions $exceptions
    * @property CI_Form_validation $form_validation
    * @property CI_Ftp $ftp
    * @property CI_Hooks $hooks
    * @property CI_Image_lib $image_lib
    * @property CI_Input $input
    * @property CI_Language $language
    * @property CI_Loader $load
    * @property CI_Log $log
    * @property CI_Model $model
    * @property CI_Output $output
    * @property CI_Pagination $pagination
    * @property CI_Parser $parser
    * @property CI_Profiler $profiler
    * @property CI_Router $router
    * @property CI_Session $session
    * @property CI_Sha1 $sha1
    * @property CI_Table $table
    * @property CI_Trackback $trackback
    * @property CI_Typography $typography
    * @property CI_Unit_test $unit_test
    * @property CI_Upload $upload
    * @property CI_URI $uri
    * @property CI_User_agent $user_agent
    * @property CI_Validation $validation
    * @property CI_Xmlrpc $xmlrpc
    * @property CI_Xmlrpcs $xmlrpcs
    * @property CI_Zip $zip
    */
    
    class CI_Controller {};
    class MY_Controller {};
    /**
    * @property CI_DB_active_record $db
    * @property CI_DB_forge $dbforge
    * @property CI_Config $config
    * @property CI_Loader $load
    * @property CI_Session $session
    */
    
    class CI_Model {};
    

答案 1 :(得分:3)

对于Eclipse PDT:在上面的根CodeIgniter ciautocomplete.php结束粘贴代码(1回答)。 就是这个。你会很高兴,它是如何工作的:-)

答案 2 :(得分:0)

在您的控制器中自动完成您自己的模型:

$this->load->model('my_model');

$this->my_model = new My_model();

...

typing: $this->my_model-> 

Eclipse自动完成模型的属性和方法