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

 

 

转载于:https://www.cnblogs.com/nong99/p/8438185.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值