注意:未定义 属性:stdClass::$simple_replace
Notice: Undefined property: stdClass::$simple_replace
注意:未定义属性:stdClass::$mind_the_id...代码在表格内,php这一行的代码是:
<?php if (!$this->seolink->mind_the_id) echo ' checked="checked"'; ?>
在几行之后再次相同注意:未定义属性: stdClass::$simple_replace
<input id="simple_replace0" type="radio" value="0" name="simple_replace"<?php if (!$this->seolink->simple_replace) echo ' checked="checked"'; ?> />
<input id="simple_replace1" type="radio" value="1" name="simple_replace"<?php if ($this->seolink->simple_replace) echo ' checked="checked"'; ?> />
这只是意味着 $this->seolink 中的调用对象没有名称为 mind_the_id 的属性,并且simple_replace.
您的 $this->seolink 链接到一个(空)标准 class 而不是具有请求属性的 class。
注意:未定义属性:stdClass::$mind_the_id...代码在表格内,php这一行的代码是:
<?php if (!$this->seolink->mind_the_id) echo ' checked="checked"'; ?>
在几行之后再次相同注意:未定义属性: stdClass::$simple_replace
<input id="simple_replace0" type="radio" value="0" name="simple_replace"<?php if (!$this->seolink->simple_replace) echo ' checked="checked"'; ?> />
<input id="simple_replace1" type="radio" value="1" name="simple_replace"<?php if ($this->seolink->simple_replace) echo ' checked="checked"'; ?> />
这只是意味着 $this->seolink 中的调用对象没有名称为 mind_the_id 的属性,并且simple_replace.
您的 $this->seolink 链接到一个(空)标准 class 而不是具有请求属性的 class。