gpt4 book ai didi

php - 只有变量应该通过引用传递 - socket_select()

转载 作者:可可西里 更新时间:2023-11-01 13:31:05 25 4
gpt4 key购买 nike

我的类中有一个函数使用了 socket_select() 函数,我注意到它抛出了这个警告:

Strict Standards: *Only variables should be passed by reference*

这就是我使用它的方式,是的,我确实阅读了 PHP Manual 中的“Example #1 Using NULL with socket_select()”

$read = array($this->socket);
$write = NULL;
$except = NULL;

socket_select($read, $write, $except, 0, $this->socket_timeout);

这会导致在 while 循环内调用函数时出现大错误。当然,我可以抑制 E_STRICT 错误,但我想知道这里的确切问题是什么。我的 PHP 版本是 5.3.5

最佳答案

可能它不喜欢 NULL 引用?

我会尝试:

$read = array($this->socket);
$write = array();
$except = array();

关于php - 只有变量应该通过引用传递 - socket_select(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6883159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com