Curl导致apache出现seg错误

发布于 2024-12-11 05:01:17 字数 416 浏览 0 评论 0原文

我有点卡住了,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月如刀 2024-12-18 05:01:18

您是否尝试过添加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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文