如何将codeIgniter与netbeans完全集成
我下载了 Netbeans 和 CodeIgniter,还下载了 2 个 Netbeans 插件。其中一个名为“PHP CI Framework”,但我无法安装它。
当我尝试安装它时,我收到以下消息:
在实现版本 201107282000 中请求插件 php api。
以下插件生效:
PHP CI 框架
我还需要安装哪些其他插件才能完全集成 CI,以便在 Netbeans 中获得完整的智能感知和文档支持?
I downloaded Netbeans and CodeIgniter, and I downloaded 2 plugins for Netbeans. On of them is called "PHP CI Framework" and I can't install it.
When I try to install it I get this message:
The plugin php apis is requested in implementation version 201107282000.
The following plugin is effected:
PHP CI Framework
What other plugin do I need to install for CI to be fully integrated so that I will have full Intellisense and documentation support in Netbeans?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您只想自动完成功能,那么这将为您完成。
1) 在 Netbeans 中的“源文件”中创建一个名为“autocomplete”的文件夹
2) 在此创建两个名为 ci_code_completion_controllers.php 的文件并将 ci_code_completion_models.php
添加到每个文件中;
注意:用您自己的模型填充模型部分。
3) 转到 Netbeans 中项目的属性,然后转到“PHP 包含路径”设置。
将自动完成文件夹添加到路径中。
4)现在在您的控制器/模型中尝试输入
$this->load->
并按 Ctrl+空格键,您应该会看到可用函数的列表。If you just want auto-complete of functions then this will do it for you.
1) Create a folder in Netbeans called 'autocomplete' in 'Source Files'
2) Create two files in here called something like ci_code_completion_controllers.php and ci_code_completion_models.php
Add this into each file;
Note: populate the Models section with your own.
3) Goto to the properties of your project in Netbeans and goto the 'PHP Include Path' setting.
Add the autocomplete folder to the path.
4) So now in your controllers/model try typing
$this->load->
and hit Ctrl+spacebar, you should see a list of avaiable functions.转到:
https://github.com/nbphpcouncil/nb-ci-plugin/releases
下载 NB CI 插件(最新版本):
安装插件:
工具>>插件>>已下载(选项卡)>>添加插件...>> (浏览本地目录中那些下载的文件)>>打开>>安装>>重启NB
激活CI框架:
工具>>选项>> PHP>>框架与工具(选项卡)>>选择CodeIgniter>>基本文件>>添加邮政编码...>>现在输入名称并浏览您下载的 CodeIgniter zip 文件 >>确定>>确定>>重新启动 NB
全部完成。 :)
激活现有项目中的 CI 框架:
选择您的项目>>右键点击>>属性>>展开框架>>选择CodeIgniter>>勾选已启用>>好的(现在您将看到 CI 徽标,后面跟着您的项目名称)
Goto:
https://github.com/nbphpcouncil/nb-ci-plugin/releases
Download NB CI Plugins (latest release):
Install Plugins:
Tools >> Plugins >> Downloaded (tab) >> Add Plugins... >> (browse those downloaded files in your local directory) >> Open >> Install >> Restart NB
Activate CI Framework:
Tools >> Options >> PHP >> Frameworks & Tools (tab) >> select CodeIgniter >> Base Files >> Add Zip... >> now type a name and browse for CodeIgniter’s zip file you downloaded >> OK >> OK >> Restart NB
All Done. :)
Activate CI framework in existing project:
Select your project >> Right click >> Properties >> Expand Frameworks >> select CodeIgniter >> tick on Enabled >> OK (Now you'll see a CI logo followed by your project name)
希望您使用的是 7.1.2 版本,最好使用 7.1.1,这样您就可以避免此类错误,它对我有用,或者更好地为您正在使用的 netbeans 的同一 IDE 使用相同版本的插件
hope you are using the version of 7.1.2 better use the 7.1.1 so that you can avoid these kind of error it worked for me or better to use same version plugin for the same IDE of netbeans you are using
我只是按照以下步骤操作:
I just followed this steps: