标签:style io ar os 使用 sp on 问题 cti
这个不是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');PHP中Notice: Undefined index: sku in 问题解决方案
标签:style io ar os 使用 sp on 问题 cti
原文地址:http://blog.csdn.net/yeweiouyang/article/details/41851031