在 NetBeans 中集成新版本的 PHP
一个月前 PHP 7.1 发布了.我刚刚将它安装在我的系统中,运行#php -version"返回PHP 7.1.0",所以一切正常.但是当时在 NetBeans 中创建一个新项目,它只允许我 '7.0' 和更低的 5.X 版本我一直在寻找在 NetBeans 中更新 PHP 新版本的选项,但没有得到任何结果.
A month ago PHP 7.1 was released. I've just installed it in my system, running '#php -version' returns me 'PHP 7.1.0' so everything is working fine. But at the time to create a new project in NetBeans, it only allows me '7.0' and the lower 5.X versions I've been looking for an option to update the new version of PHP in NetBeans but I didnt get a thing.
其他细节:Debian 8 稳定系统.PHP7.0和之前的5.X版本是通过'apt-get'安装的,但是PHP7.1是通过'./configure &&制作&&进行安装'.NetBeans 是通过 sh 脚本(不是apt-get")安装的.
Other details: Debian 8 stable system. PHP7.0 and previous 5.X versions had been installed through 'apt-get', but PHP7.1 through './configure && make && make install'. NetBeans was installed via sh script (not 'apt-get').
有什么想法吗?
推荐答案
NetBeans 需要自己提供 PHP 7.1 支持,它不能利用已安装的 PHP 版本.不幸的是,最新的 NetBeans 8.2 不支持 PHP 7.1.
NetBeans needs to provide PHP 7.1 support by itself, it cannot leverage installed PHP versions. And unfortunately latest NetBeans 8.2 does not support PHP 7.1.
如果你想看到它发生,请投票并考虑在 https://netbeans.org/bugzilla/show_bug.cgi?id=268317
If you want to see it happen, please vote and consider contributing on https://netbeans.org/bugzilla/show_bug.cgi?id=268317
相关文章