Loving Coding & Visual Design

关于XML的content-type问题

我们一般用content-type: text/xml来作为XML文件作为header输出,不过可能有些浏览器无法正常下载。Pete向我们建议:

if the user agent contains Mozilla.
So for IE, Firefox, and Safari 1.x my feed will be served in text/xml

other clients will get the proper application/rss+xml MIME type.
Here's the PHP code:
if(preg_match('/mozilla/i',$_SERVER['USER_AGENT'])){
header('content-type: text/xml');
}else{
header('content-type: application/rss+xml');
}

好像有问题,WP里面没办法加入带有"<和>"的代码?也不能加颜色,怎么办?更新:已解决



下一页


最 近 文 章

  1. Reading - Mon, 30 Nov -0001 00:00:00 +0000
  2. 关于数据统计 - Mon, 30 Nov -0001 00:00:00 +0000
  3. Redis使用小结 - Mon, 30 Nov -0001 00:00:00 +0000
  4. Selenium自动化测试 - Mon, 30 Nov -0001 00:00:00 +0000
  5. 关于selinux - Mon, 30 Nov -0001 00:00:00 +0000
  6. PostgreSql常见问题 - Mon, 30 Nov -0001 00:00:00 +0000
  7. 使用SSL - Mon, 30 Nov -0001 00:00:00 +0000
  8. API设计心得 - Mon, 30 Nov -0001 00:00:00 +0000
  9. git常见问题 - Mon, 30 Nov -0001 00:00:00 +0000
  10. 网站压力测试 - Mon, 30 Nov -0001 00:00:00 +0000