为什么我得到未定义的变量错误?

时间:2012-06-09 03:15:50

标签: php explode

我的代码:

$fburl_arr = array();
$fburl_arr = explode( "/", "https://www.facebook.com/media/albums/?id=2243618684625465217" );
echo "<pre style='font-size:13px; background-color:yellow;'>";
print_r( "fburl_arr >>> " );
print_r( $fburl_arr );
print_r( "filename >>> " );
print_r( $filename );
echo "</pre>";

给我错误:

Notice:  Undefined variable: fburl_arr in /home/content/96/8564996/html/app/webroot/test/joomla254/modules/mod_jfbalbum/helper.php on line 44

2 个答案:

答案 0 :(得分:1)

$fburl_arr已启动,因此无法成为错误来源。

http://codepad.viper-7.com/IP0RCu#

您也不需要启动数组,因此您可以删除

$fburl_arr = array();

答案 1 :(得分:0)

打开PHP.ini并找到配置行: error_reporting 。将其更改为:error_reporting = E_ALL & ~E_NOTICE,错误将消失