警告:未定义的阵列键WP PHP
我在已安装的插件中的WordPress网站上有一个错误消息。
错误消息是“警告:第163行中的未定义数组键”,
该行看起来像:
$uip = $all_plugins["uipress/uipress.php"];
有人可以帮助我,我不知道如何解决此问题。
提前致谢。
I have an error message in my Wordpress website in a plugin that i have installed.
Error message is "Warning: Undefined array key in line 163"
The line looks like that :
$uip = $all_plugins["uipress/uipress.php"];
Can some one help me please i don't know how to fix this.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要跳过此警告,请在数组变量之前使用“@”(不建议使用)。
或者,
您可以从创建或生成数组的位置找到位置。在这种情况下,也许数组键是一个文件名(“ uipress/uipress.php”)。如果文件丢失,则会看到此警告。
谢谢
To skip this warning use a "@" before the array variable (it's not recommended).
Or
You can find out the place from where the array was created or generated. In that case, maybe the array key is a file name ("uipress/uipress.php"). If the file is missing then you will see this warning.
Thank you