0

I was able to integrate the codeigniter functions with the netbeans autocomplete feature.

I was looking for a way so that the user doc can also be integrated with the netbeans so that a small description of the codeigniter function also comes along with the list of the codeigniter function with the auto complete feature. Any suggestions?

There is an option to include phpdoc path in netbeans, but I googled I did not find phpdoc of codeigniter. any suggestions?

4

2 に答える 2

0

これを確認したところ、問題は CodeIgniter 関数の宣言方法に関連している可能性があると思います。各関数は次のようにカプセル化されています。

if ( ! function_exists('the_function_name'))
{
    function the_function_name($param)
    {
        //...
    }
}

これを削除すると、オートコンプリートが適切に機能するように見えました (説明とパラメーターを使用)。問題を解決するためにこれらを削除することを提案しているわけではありませんが (CI コアのハッキングが必要になるため)、Netbeans が CI 関数の宣言方法でオートコンプリートを管理する方法に制限がある可能性があります。

于 2012-04-06T08:59:08.470 に答える