foolsock icon indicating copy to clipboard operation
foolsock copied to clipboard

socket persistent connect for PHP RPC

Results 1 foolsock issues
Sort by recently updated
recently updated
newest added

其实 stream已经 实现持久化了。 $socket = stream_socket_client('tcp://host', $errorno, $errorstr, $timeout, STREAM_CLIENT_CONNECT | STREAM_CLIENT_PERSISTENT); 观察源码其内部也调用了stream_*系列函数 加上persistent resource实现