1、下载 php 5.6.x系列的最新版本:
php-5.6.40-nts-Win32-VC11-x64.zip
历史版本:https://windows.php.net/downloads/releases/archives/
PHP扩展:https://windows.php.net/downloads/pecl/releases/
2、配置php.ini
(1) 上传文件:【荐】PHP上传文件大小限制大全
upload_max_filesize 300M post_max_size 350M memory_limit 400M max_execution_time 600 max_input_time 600
(2) 设置时区
date.timezone=Asia/Shanghai
(3) 获取原始 post 表单数据
always_populate_raw_post_data = -1
(4) 最大表单数量
max_input_vars=3000
(5) 错误日志
display_errors=On log_errors=On error_log=D:/wen-jianbao/php/php-error.log error_reporting=E_ALL & ~E_NOTICE
(5) 隐藏PHP版本信息
expose_php=Off
(6) 关闭远程 打开/包含 文件的功能
allow_url_fopen=Off allow_url_include=Off
(7) 禁用特定的函数(这个还是不要去设置吧,把自己给坑了,函数被禁用了,没有错误提示消息!)
#disable_functions=phpinfo,system,exec,shell_exec,passthru,popen,dl,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source
相关文章: