我试图包含两个cURL命令块。第二个块取决于第一个块返回的值。我知道在尝试在服务器之间建立cURL调用时可能存在网络问题。第一个块返回的值将保存在数据库中。我想知道的是如何在PHP文件上编写将执行两个cURL命令块的语法,这样当第一个块返回值时,我可以启动第二个块,请记住可能存在网络问题。我知道如何编写cURL命令块。我只需要那个可以避免网络问题的部分。这就是我的想法:(在PHP文件中)
$default = "default value";
$a = $default;
//first block executes initializing $a
$a = "value returned by first block. Already saved to database";
//second block can't execute until this value is not set to default value
while($a != $default){
//second block executes
//somewhere to the end of second block
$result = curl_exec($ch); //where $ch is the handle for my cURL call
//exiting the while loop:
if(isset($result))exit(0); //don't know if this is the proper way of exit
//a while loop inside a PHP script
}
请告诉我这是否正确或如何改进。还有一件事,因为我对PHP很新,你如何在PHP中注释掉语法行? 你在JAVA中使用//吗?
谢谢
答案 0 :(得分:1)
cURL不是异步的,因此您不必担心让代码等待它完成。也就是说,PHP将不会在curl_exec()
之后执行行,直到cURL请求完成。这样的事情对你有用:
$result = curl_exec($ch);
if($result !== false){
//Do Stuff on successful curl
}
else{
echo curl_error($ch); //print the curl error
}
此外,退出while循环的方法是break;
,如果您只想跳过当前迭代,请使用continue;