• 冒险村物语
  • 英雄无敌3塔防
  • 驾考家园手游

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

2015-05-27

这个不是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');

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

人气推荐

知识阅读

精彩推荐

  • 游戏
  • 软件
查看更多>>