Home >php教程 >php手册 >php-fpm出现Undefined variable几个解决办法

php-fpm出现Undefined variable几个解决办法

WBOY
WBOYOriginal
2016-05-27 08:47:461438browse

以前写的一个php脚本,在换成php5.5.8的版本的时候出现了PHP Notice:undefined index xxx 的警告信息,感觉不舒服.

解决方法:

方法1:服务器配置修改 修改php.ini配置文件,error_reporting = E_ALL & ~E_NOTICE

方法2:页面头部新增 error_reporting(E_ERROR | E_WARNING | E_PARSE); 或者 error_reporting(E_ALL & E_NOTICE); 或者 error_reporting(0);

检测参数方法,在PHP5.5.8依然无效 Undefined variable:param,定义一个函数:

function _get($str){ 
	$val = !emptyempty($_GET[$str]) ? $_GET[$str] : null; 
	return $val; 
}

延伸问题:

1.修改在php.ini的参数后重启 php-fpm 网上的那种 php5.4下的 kill 等都无效(在5.5下无php-fpm.pid,kill对应进程也是无效的,我的默认起了3个php-fpm进程)

php-fpm 关闭:

kill -INT `cat /usr/local/php/var/run/php-fpm.pid`

php-fpm 重启:

kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`

查看php-fpm进程数:

ps aux | grep php-fpm

2.解决方法 netstat -lntp 可以看到php-fpm 监听的9000端口的进程 kill掉此进程即可.

3.在重新启动php-fpm即可 /usr/local/webservers/php/sbin/php-fpm -D

本文地址:

转载随意,但请附上文章地址:-)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn