$url = 'http://sfs.dev.pankaj.happlabs.in/api/v1/init';
如果文件名init不存在且整个url是正确的,那么如何在php中检查它。
答案 0 :(得分:1)
http://sfs.dev.pankaj.happlabs.in/api/v1/init处的JSON无效,因此您将收到错误消息。端点似乎是正确的。
要检入PHP(回答你的问题),你可以使用:
http://php.net/manual/en/function.file-get-contents.php
<?php
if ($html = file_get_contents('http://cia.gov')) {
// $html has content
}