PHP头条
热点:

PHP中Notice: Undefined index: sku in 问题解决方案


这个不是bug,而且warning,当用$_GET[]或$_POST[]时不加isset之类判断的话,就会提示这个错误,Jones建议的解决方案完美解决这个问题:

/*
 * 取代$_GET[]获取值
 */
function _get($str) {
	$val = !empty($_GET[$str]) ? $_GET[$str] : null;
	return $val;
}

/*
 * 取代$_POST[]获取值
 */
function _post($str) {
	$val = !empty($_POST[$str]) ? $_POST[$str] : null;
	return $val;
}

使用的时候,用法如下:

/** 设置当前页数 */
$page = _get('page');
$inventory->setCurrentPage($page);

/** 计算总页数 */
$sku = _post('sku');
$warehouse = _post('warehouse');
$supplier = _post('supplier');

www.phpzy.comtrue/phprm/44807.htmlTechArticlePHP中Notice: Undefined index: sku in 问题解决方案 这个不是bug,而且warning,当用$_GET[]或$_POST[]时不加isset之类判断的话,就会提示这个错误,Jones建议的解决方案完美解决这个问题: /* * 取代...

相关文章

PHP之友评论

今天推荐