...
|
...
|
@@ -21,11 +21,19 @@ class ImapClient { |
|
|
*/
|
|
|
public int $tagNum = 0;
|
|
|
|
|
|
/**
|
|
|
* 是否是非阻塞模式
|
|
|
* @var bool
|
|
|
*/
|
|
|
public $isBlocking = false;
|
|
|
|
|
|
public function __construct(string $host){
|
|
|
$this->host = $host;
|
|
|
$this->socket = false;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function open(){
|
|
|
$content = stream_context_create([
|
|
|
'ssl' => [
|
...
|
...
|
@@ -45,6 +53,9 @@ class ImapClient { |
|
|
$content
|
|
|
);
|
|
|
|
|
|
// 设置为非阻塞模式
|
|
|
$this->isBlocking = stream_set_blocking($this->socket, false);
|
|
|
|
|
|
if($error){
|
|
|
throw new \Exception($error);
|
|
|
}
|
...
|
...
|
@@ -90,7 +101,30 @@ class ImapClient { |
|
|
* @time 2024/9/13 15:49
|
|
|
*/
|
|
|
protected function readLine(){
|
|
|
$str = fgets($this->socket,2048);
|
|
|
$i = 50; // 非阻塞模式下,只等待5秒,没返回数据就返回
|
|
|
$str = false;
|
|
|
while ($i>0){
|
|
|
$str = fgets($this->socket,2048);
|
|
|
// 非阻塞模式
|
|
|
if($this->isBlocking && $str === false){
|
|
|
$i--;
|
|
|
// 兼容下swoole
|
|
|
if(function_exists('go') && \co::getCid()>0){
|
|
|
\co::sleep(0.1);
|
|
|
}else{
|
|
|
// 等待 100 毫秒
|
|
|
usleep(100000);
|
|
|
}
|
|
|
|
|
|
}else{
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
// 超时了,异常
|
|
|
if(!$i && $str===false){
|
|
|
throw new \Exception('read time out');
|
|
|
}
|
|
|
|
|
|
if($this->debug){
|
|
|
echo 'read: '.$str;
|
|
|
}
|
...
|
...
|
|