PHP開発にNetbeans IDEを使用しています。これにより、Kohanaフレームワークのコード補完が得られます。NetbeansでCodeIgniterのコード補完を行う方法はありますか?
指示 :
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
_を含めます。
プロジェクトを再起動すると、オートコンプリートが機能します。