file_get_contents 不起作用?

发布于 2024-11-19 15:02:10 字数 610 浏览 1 评论 0原文

服务器:PHP 5.3

有问题的行:

file_get_contents(http://subdomain.domain.com/Api/id);

http://subdomain.domain.com/Api/id中我有这个:

$newFeeds = new newsFeeds();
$newFeeds->function($newsFeedParseFile); //insertamos a memcachedb

从这里开始它不起作用

$redis = cacheFactory::get('redis');    
$redis->addTolist("Info_{1_2_FS}", "InfoRedis");

我没有收到任何错误,它只是不添加到队列中。

磨损的事情是当我复制地址 http://subdomain.domain.com/Api/id 并粘贴到地址栏中我得到了我想要的回复!

Server: PHP 5.3

The line in question:

file_get_contents(http://subdomain.domain.com/Api/id);

In http://subdomain.domain.com/Api/id I have this:

$newFeeds = new newsFeeds();
$newFeeds->function($newsFeedParseFile); //insertamos a memcachedb

and from here it doesn't work

$redis = cacheFactory::get('redis');    
$redis->addTolist("Info_{1_2_FS}", "InfoRedis");

I don't get any error, it just doesn't add to queue.

The wear things is when I copy the address http://subdomain.domain.com/Api/id and paste in the address bar I get the response that I want!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

丶视觉 2024-11-26 15:02:10

验证您的 php.ini 中的“allow_url_fopen”是否已打开,如果没有,请将其更改为“打开”。

Verify in your php.ini if "allow_url_fopen" is On, if isn't change it to On.

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