thinkPHP5使用的一些小配置

开发环境:

版本:php5.6

系统:windows

工具:phpstudy、vscode

 

遇到的报错信息error:

一、原php5.4版本(不限定)切换到5.6版本,路由报错:

No input file specified.

解决办法:修改 .htaccess 规则,如下:

IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

修改处: 为index.php添加?

 

二、php.in的配置

错误信息如下:

Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknown on line 0

分析:这个问题和PHP版本有关系,PHP 5.6已经废弃了$HTTP_RAW_POST_DATA。 

解决办法:修改php.ini,如下:

always_populate_raw_post_data = -1

 

vscode的phpDug配置:

1.【文件】-【首选项】-【设置】 添加如下配置信息:

 php.validate.executablePath:“URL地址”

 2. php.in配置:

[XDebug]
xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug"
zend_extension="D:\phpStudy\php\php-5.6.27-nts\ext\php_xdebug.dll"    // 对照php版本路径
xdebug.remote_enable = 1
xdebug.remote_autostart = 1

 

 

posted @ 2018-02-10 10:17  big黑钦  阅读(489)  评论(0编辑  收藏  举报