file_get_contents 不起作用?
服务器: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
验证您的 php.ini 中的“allow_url_fopen”是否已打开,如果没有,请将其更改为“打开”。
Verify in your php.ini if "allow_url_fopen" is On, if isn't change it to On.