PHP 中的调用时间传递引用
提供的代码触发警告“调用时间传递引用”已被弃用。”此警告表明 PHP 中不再支持使用调用时传递引用(由变量引用之前的 & 运算符表示)。
调用时传递引用
在旧版本的 PHP 中,调用时按引用传递允许在使用按值传递函数时模拟按引用传递的行为。这涉及在调用时在变量引用前添加 &,例如:
not_modified(&$x);
这允许修改函数内 $x 引用的变量。
弃用
调用时传递引用已在 PHP 的后续版本中被弃用,不应使用。相反,变量应该使用 & 通过引用显式传递,例如:
modified($x);
对象和按引用传递
在旧版本的 PHP 中,需要对象在函数内修改时按引用传递。然而,在现代 PHP 版本中这不再是必需的,因为默认情况下对象总是通过引用传递。因此,在提供的代码中使用 &$this 是多余的。
解决方案
要解决该警告,请从提供的代码中删除 & 的所有实例。以下是更新后的代码:
function XML() { $this->parser = xml_parser_create(); xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, false); xml_set_object($this->parser, $this); xml_set_element_handler($this->parser, 'open', 'close'); xml_set_character_data_handler($this->parser, 'data'); } function destruct() { xml_parser_free($this->parser); } function parse($data) { $this->document = array(); $this->stack = array(); $this->parent = &$this->document; return xml_parse($this->parser, $data, true) ? $this->document : NULL; }
以上是为什么 PHP 中不推荐使用调用时传递引用以及如何修复警告?的详细内容。更多信息请关注PHP中文网其他相关文章!