CodeIgniter 的 Netbeans 代码完成 [英] Netbeans code completion for CodeIgniter

查看:28
本文介绍了CodeIgniter 的 Netbeans 代码完成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用 Netbeans IDE 进行 PHP 开发.它为我提供了 Kohana 框架的代码补全.有没有办法让 Netbeans 中的 CodeIgniter 完成代码?

解决方案

说明:

使用您选择的名称在 nbproject 中创建一个新目录(我使用了它,因为在推送到 prod 时它被省略了),我使用了 CI_Autocomplete.

使用您选择的名称创建一个新文件,我使用了 CI_Autocomplete_2.0.php,并将其放在新创建的文件夹 nbprojectCI_Autocomplete 中.>

将以下代码粘贴到新文件 CI_Autocomplete_2.0.php 中.

现在转到(这是用于 OSX,所以不确定它是否与 Windows 相同)File >项目属性(项目名称)>PHP 包含路径 并包含您在上面创建的新文件夹 nbprojectCI_Autocomplete.

重新启动您的项目,自动完成将起作用.

I am using Netbeans IDE for Php development. It gives me code completion for Kohana framework. Is there any way to have code completion for CodeIgniter in Netbeans?

解决方案

Instructions:

Create a new directory inside nbproject (I used this since it’s omitted when pushing to prod) with your name of choice, I used CI_Autocomplete.

Create a new file with your name of choice, I used CI_Autocomplete_2.0.php, and place it inside the newly created folder, nbprojectCI_Autocomplete.

Paste the below code inside the new file, CI_Autocomplete_2.0.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 {};

    /**
    * @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 {};
?>

Now go to (this is for OSX so not sure if it’s the same for Windows) File > Project Properties (projectname) > PHP Include Path and include the new folder you created above, nbprojectCI_Autocomplete.

Restart your project and autocomplete will work.

这篇关于CodeIgniter 的 Netbeans 代码完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆