php错误 Notice: Undefined offset: 1 in C:\wamp\www\wap\source\function\function_core.php on line 22
/***[Discuz!](C)2001-2099ComsenzInc.*ThisisNOTafreeware,useissubjecttolicenseterms**$...
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: function_core.php 24580 2011-09-27 05:38:22Z zhengqingpeng $
*/
function libfile($libname, $folder = '') {
$libpath = DISCUZ_ROOT.'/source/'.$folder;
if(strstr($libname, '/')) {
list($pre, $name) = explode('/', $libname);
return realpath("{$libpath}/{$pre}/{$pre}_{$name}.php");
} else {
return realpath("{$libpath}/{$libname}.php");
}
}
function langfile($langfile) {
global $_E;
list($path, $file) = explode('/', $langfile);
if(!$file) {
$file = $path;
$path = '';
}
if($path != 'plugin') {
$key = $path == '' ? $file : $path.'_'.$file;
if(!isset($_E['lang'][$key])) {
require_once EYDMLANG.'/'.$_E['config']['cfg']['cfg_lang'].'/'.($path == '' ? '' : $path.'/').'lang_'.$file.'.php';
$_E['lang'][$key] = $lang;
}
}
} 展开
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: function_core.php 24580 2011-09-27 05:38:22Z zhengqingpeng $
*/
function libfile($libname, $folder = '') {
$libpath = DISCUZ_ROOT.'/source/'.$folder;
if(strstr($libname, '/')) {
list($pre, $name) = explode('/', $libname);
return realpath("{$libpath}/{$pre}/{$pre}_{$name}.php");
} else {
return realpath("{$libpath}/{$libname}.php");
}
}
function langfile($langfile) {
global $_E;
list($path, $file) = explode('/', $langfile);
if(!$file) {
$file = $path;
$path = '';
}
if($path != 'plugin') {
$key = $path == '' ? $file : $path.'_'.$file;
if(!isset($_E['lang'][$key])) {
require_once EYDMLANG.'/'.$_E['config']['cfg']['cfg_lang'].'/'.($path == '' ? '' : $path.'/').'lang_'.$file.'.php';
$_E['lang'][$key] = $lang;
}
}
} 展开
展开全部
你的数组下标出界!!
给你个将就的办法
采用抑制其显示的方法,即更改php.ini文件中error_repoting的参数为”EALL & Notice “,这样屏幕就能正常显示了.
给你个将就的办法
采用抑制其显示的方法,即更改php.ini文件中error_repoting的参数为”EALL & Notice “,这样屏幕就能正常显示了.
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看问题应该是你试图访问一个数组元素,但是这个元素不存在,请检查你对应的代码
$ar=[1]; //只有一个元素
echo $ar[1]; //试图访问第二个,会报你这个警告
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
数组下标错误了,你var_dump一下当前的数组,看看里面有没有下标1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询