我尝试从php标题中获取Last-Modified时间,但是当我尝试获取所有标题时它不起作用
//Declare a query
function queryFunction(term){
return this.FullName.indexOf(term) != -1
}
//Pass it to where function
table
.where(queryFunction, term)
.read()
.then(success, failure);
所以我想打印
$headers=get_headers("http://example.com");
print_r($headers);
当我添加最后一行时,我得到:Last-Modified:HTTP / 1.1 200 OK 那么有没有办法得到那个或如果那是不可能然后通过preg_match或strpos打印
答案 0 :(得分:1)
告诉get_headers
解析结果:
$headers=get_headers("http://example.com", 1);
print("Last-Modified: " . $headers["Last-Modified"] . "\n");