在php中获取请求的URL的内容类型 [英] Get Content-Type of requested url in php

查看:118
本文介绍了在php中获取请求的URL的内容类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用php我怎么能够定义变量 $ type 内容类型 http://www.example.com

Using php how would I be able to define the variable $type into the content-type of http://www.example.com

例如: $ type 定义为text / html

到目前为止,这是我的工作:

So far this is what i am working with:

<?php
$url = 'http://www.example.com';
print_r(get_headers($url));
print_r(get_headers($url, 1));
?>

代码可根据需要进行更改

The code may be changed as much as needed

推荐答案

您是否尝试过:

Have you tried:

$type = get_headers($url, 1)["Content-Type"];

正如@Michael在评论中指出的那样,如果没有当前版本的PHP,此语法将无法正常工作

As noted in comments by @Michael, this syntax won't work without a very current version of PHP.

你还试过:

Have you also tried:

$headers = get_headers($url, 1);
$type = $headers["Content-Type"];

这篇关于在php中获取请求的URL的内容类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆