標題:
5-4 檔頭資訊
[打印本頁]
作者:
小誌
時間:
2011-4-19 09:37
標題:
5-4 檔頭資訊
5-4 檔頭資訊
檔頭資訊:網頁文件中被<HEAD>…</HEAD>標籤包括起來的文件資訊,常見的有文件抬頭(被<TITLE>…</TITLE>標籤包括起來)以及文件的類型、所使用的編碼字集等:
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>新增網頁1</title>
</head>
<body>
網頁的顯示內容
</body>
</html>
複製代碼
這些檔頭資訊我們都可以透過PHP的「header()」函數來做輸出:
header()函數格式
int header ( string string [, bool replace [, int http_response_code]])
複製代碼
也就是:
header(“網頁資訊名稱: 資訊內容”);
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)