codecamp

set_content_type()

作用:设置文档类型及编码。 语法: null set_content_type(string $type[, string $charset])

参数:

  • $type 文档类型。
  • $charset 编码,默认值 UTF-8。 说明: 在未发送头部信息的情况下,函数会将文档类型和编码设置在响应头部中,如果头部信息已发送,则将其设置在 HTML 代码中。

示例:

<?php
set_content_type('text/html');
?>

或者:

<head>
<?php set_content_type('text/html', 'GB2312'); ?>
</head>
set_query_string()
get_client_ip()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

挂钩机制

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }