我正在使用 Netbeans IDE 进行 PHP 开发。它为我提供了 Kohana 框架的代码完成功能。有没有办法在 Netbeans 中为 CodeIgniter 完成代码?
问问题
22353 次
1 回答
38
说明:
在 nbproject 中创建一个新目录(我使用了这个,因为在推送到 prod 时它被省略了),使用你选择的名称,我使用CI_Autocomplete
.
使用您选择的名称创建一个新文件,我使用CI_Autocomplete_2.0.php
了 ,并将其放在新创建的文件夹中,nbproject\CI_Autocomplete
.
将以下代码粘贴到新文件中,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 {};
?>
现在转到(这是针对 OSX,所以不确定它是否与 Windows 相同)File > Project Properties (projectname) > PHP Include Path
并包含您在上面创建的新文件夹,nbproject\CI_Autocomplete
.
重新启动您的项目,自动完成功能将起作用。
于 2012-08-01T19:14:07.710 回答