- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我访问 wordpress dashbord 以安装新插件时,如前所述发生错误
stdClass::$plugin in /var/sentora/hostdata/websitenligne/public_html/sme2/wp-includes/class-wp-list-util.php on line 150
public function pluck( $field, $index_key = null ) {
if ( ! $index_key ) {
/*
* This is simple. Could at some point wrap array_column()
* if we knew we had an array of arrays.
*/
foreach ( $this->output as $key => $value ) {
if ( is_object( $value ) ) {
$this->output[ $key ] = $value->$field;
} else {
$this->output[ $key ] = $value[ $field ];
}
}
return $this->output;
}
/*
* When index_key is not set for a particular item, push the value
* to the end of the stack. This is how array_column() behaves.
*/
$newlist = array();
foreach ( $this->output as $value ) {
if ( is_object( $value ) ) {
if ( isset( $value->$index_key ) ) {
$newlist[ $value->$index_key ] = $value->$field;
} else {
$newlist[] = $value->$field;
}
} else {
if ( isset( $value[ $index_key ] ) ) {
$newlist[ $value[ $index_key ] ] = $value[ $field ];
} else {
$newlist[] = $value[ $field ];
}
}
}
$this->output = $newlist;
return $this->output;
}
错误是什么?
最佳答案
这个问题似乎是第一个 introduced in version 4.7 ,这是由于 wp-includes/class-wp-list-util.php
没有检查是否设置了对象属性。
好像是is still present在 WordPress 5.2.1(本文发布时最新版本)中。第 152 行应该是这样的:
$this->output[ $key ] = isset( $value->$field ) ? $value->$field : null;
无论如何... 要删除此警告,请编辑您的 wp-config.php
并更改:
define( 'WP_DEBUG', true );
...对此(或完全注释掉 WP_DEBUG
行):
define( 'WP_DEBUG', false );
或者,如果你想离开 WP_DEBUG已启用但将其输出限制为 wp-content/debug.log
,您可以改为添加:
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
关于wordpress - stdClass wordpress插件错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48443966/
我需要数据库表中最后一个有效条目,该条目将是具有最大主键的行。所以使用 mysqli,我的查询是“SELECT MAX(id) FROM table LIMIT 1”。此查询返回正确的数字(使用 pr
我的 mysql 查询是: $query=('SELECT count(post_id) FROM comments where post_id='.$row['post_id']); $us
当我访问 wordpress dashbord 以安装新插件时,如前所述发生错误 stdClass::$plugin in /var/sentora/hostdata/websitenligne/pu
我不断有这个错误,我无法解决它。 这个错误是什么意思??我应该删除徽章模块还是编辑一些模块。 注意:未定义的属性:user_badges_block_view() 中的 stdClass::$badg
伙计们。我正在使用 ajax 通过 php 加载一堆数据。有时异常未被捕获。这会生成一些 javascript 无法解析的错误消息(因为它需要 json)。这会使页面崩溃,这并不酷。所以我正在构建一个
我不知道为什么,但我得到这个错误: 可捕获的 fatal error :类 stdClass 的对象无法转换为字符串 对于这段代码: $sql = "SELECT * FROM player ORDE
我正在使用这段代码插入 $last_id = "SELECT max(id) as id from clients "; $client_id = $this->db->query($last
给定下面的数组,我如何获取 object(stdClass) 的值,例如 Pcv (campus Aalst)、Mss (Privaatpraktijk kinesitherapie Peeters
我正在努力使用 PHP 解析以下数据。 API 返回它,我尝试了各种语法。如何以非对象方式返回数据?或者,使用 stdClass 调用数据的语法是什么? 我能否将其转换为一个或两个基于数据的数组?当涉
我正在尝试克隆一个具有 DateTime 属性的 stdClass 对象。但它失败了。看起来克隆不起作用。我应该编写自己的 __clone() 方法吗?这里有什么问题? 代码: $object = n
是否可以在 php 中执行此操作? Javascript 代码: var a = {name: "john", age: 13}; //a.name = "john"; a.age = 13 即时实例
$obj = new stdClass(); echo gettype($obj); //object function abc(object $obj) { return; } abc($o
我有一个带有 __get 和 __set 函数的数据库模型,可以防止动态创建属性(以防止输入错误): class UserModel { public $Name; public $L
我有以下带有数组的对象,并试图获取电子邮件的值。如何做到这一点? stdClass Object ( [status] => stdClass Object ( [info]
是否有一种标准方法来类型提示存在于 stdClass 上的属性? 例如,我使用一些 API 并获得 JSON 响应。然后我用 json_decode 解析它,但我希望 IDE 知道这个 stdClas
我可以用匿名函数做到这一点 $func = function() { return "Hello World"; }; var_dump($func()); 但是,我不能这样做 $n
这个问题在这里已经有了答案: PHP check whether property exists in object or class (10 个答案) 关闭 1 年前。 我有一个对象名称 even
我在这里阅读了一些类似的问题,但不幸的是找到了适合我的案例的解决方案。 API 连接的部分输出如下; stdClass Object ( [page] => 0 [items] =>
这个问题在这里已经有了答案: stdClass object and foreach loops (5 个回答) 关闭 27 天前。 我有一个这样的对象: stdClass Object (
我有: stdClass Object ( [0] => stdClass Object ( [one] => aaa [two
我是一名优秀的程序员,十分优秀!