<code> function request($url, $payload) { $cmd = "curl -X POST -H 'Content-Type: application/json'"; $cmd.= " -d '" . $payload . "' " . "'" . $url . "'"; if (!$this->debug()) { $cmd .= " > /dev/null 2>&1 &"; } //发送异步请求 exec($cmd, $output, $exit); return $exit == 0; } ?></code>
<code> function request($url, $payload) { $cmd = "curl -X POST -H 'Content-Type: application/json'"; $cmd.= " -d '" . $payload . "' " . "'" . $url . "'"; if (!$this->debug()) { $cmd .= " > /dev/null 2>&1 &"; } //发送异步请求 exec($cmd, $output, $exit); return $exit == 0; } ?></code>
<code>$a=exec($cmd, $output, $exit);</code>
PHP의 컬 기능을 사용할 수 없나요
curl을 사용하면 작동하지 않지만 요청 주소에서 콜백을 호출할 수 있습니다.
Swoole과 같은 네트워크 프레임워크를 사용할 수 있습니다
$ch = 컬_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT,10);
$response = 컬_exec($ch);
swoole은 비동기식일 수 있지만 이렇게 해도 여전히 동기식입니다.