Curl导致apache出现seg错误
我有点卡住了,curl 导致 apache 中出现分段错误,我找不到原因。
我做了一个简单的案例,试图理解:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://google.fr');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,15);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT,30);
curl_exec($ch);
我的conf,apache2,php5.3,ubuntu 11.10。尝试重新安装 php5-curl 但没有成功
如果您以前见过这个,并且有一个想法,请告诉我!
I'm a bit stuck, curl causes segmentation faults in apache and I can't find out why.
I made a simple case, trying to understand :
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://google.fr');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,15);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT,30);
curl_exec($ch);
My conf, apache2, php5.3, ubuntu 11.10. Tried to reinstall php5-curl with no success
If you have ever seen this before, and have an idea please tell me !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过添加curl_close($ch);作为你的例子中的最后一行?
不过,它不应该出现段错误;)
尝试像这样手动运行代码:php test.php
Have you tried adding curl_close($ch); as last line in your example?
Still, it shouldn't segfault ;)
Try running the code manually like this: php test.php