php修改header
1. php header 怎麼設置
PHP設置header示例:
<?php
//設置頁面編碼
header("Content-type:/text/html;charset=utf-8;");
//頁面重定向跳轉示例
header("location:index.php");
2. wordpress 怎麼修改header.php裡面的title
如果之前圖片的寬度在html標簽上添加的話,需要在html里修改。行內樣式權重比外部樣式權重大,直接修改css是任何效果的。
3. php如何修改http請求頭
<?php
$fp = fsockopen("test.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET /2.php HTTP/1.1\r\n";
$out .= "Host: test.com\r\n";
$out .= "name:longqiqi\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
?>
4. 如何正確修改php論壇中的header.htm
具體修改辦法要看你使用的論壇程序是哪一種。消仿段PHP論壇程序拿譽非常多。
如果確定是header.htm,則應該在這個文件中修改這些項目所在的表格布局大凱和寬度。
會html語法不?
5. PHP中header用法小結
本文實例總結了PHP中header用法。分享給大家供大家參考,具體如下:
PHP
中
header()函數的作用是給客戶端發送頭信息。
什麼是頭信息?
這里只作簡單解釋,詳細的自己看http協議。
在
HTTP協議中,伺服器端的回答(response)內容包括兩部分:頭信息(header)
和
體內容,這里的頭信息不是HTML中的<head></head>部分,同樣,體內容也不是<BODY><
/BODY>。頭信息是用戶看不見的,裡麵包含了很多項,包括:伺服器信息、日期、內容的長度等。而體內容就是整個HTML,也就是你所能看見的全
部東西。
頭信息有什麼用呢?
頭信息的作用很多,最主要的有下面幾個:
1、跳轉:
Header("Refresh:2;
URL=http://localhost//session.php");//2秒後跳轉
若等待時間為0,則與header("location:")等效。
Header("Location:http://localhost//session.php");//直接跳轉
2、指定網頁的內容:
同樣一個XML文件,如果頭信息中指定:Content-type:
application/xml
的話,瀏覽器會將其按照XML文件格式解析。但是,如果頭信息中是:Content-type:
text/xml
的話,瀏覽器就會將其看作存文本解析。(瀏覽器不是按照擴展名解析文件的)
3、附件下載:
$filename
=
"tupian.jpg";
//文件路徑
可以絕對路徑也可以相對路徑
header('Content-type:
application/x-jpg');
//文件的類型
header('Content-Disposition:
attachment;
filename="保存時的文件名.jpg"');
//下載顯示的名字
readfile("$filename");
exit();
查看:
$link
=
"tupian.jpg";
//文件路徑
可以絕對路徑也可以相對路徑
//$link
=
"新建文本文檔.xml";
//文件路徑
可以絕對路徑也可以相對路徑
if
(isset($link))
{
Header("HTTP/1.1
303
See
Other");
Header("Location:
$link");
exit;
}
更多關於PHP相關內容感興趣的讀者可查看本站專題:《php文件操作總結》、《PHP運算與運算符用法總結》、《PHP網路編程技巧總結》、《PHP基本語法入門教程》、《php操作office文檔技巧總結(包括word,excel,access,ppt)》、《php日期與時間用法總結》、《php面向對象程序設計入門教程》、《php字元串(string)用法總結》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。
6. PHP網站怎麼修改
找到include文件夾中的header.php修改即可
請採納答案,支持我一下。
7. php修改了網頁header為gb2312後,html標簽裡面的文字又會亂碼怎麼辦。
編碼不是亂設置的,應當遵循這樣一個原則:文件保存的編碼格式、header設置的輸出編碼格式、資料庫存儲使用的編碼三者保持一致。
如果資料庫編碼是GB2312,請修改網頁代碼的編碼也為GB2312,且網頁header設置為gb2312,或者三者全部設置為UTF-8
8. php的header函數設置在哪
//ok
header(『HTTP/1.1200OK');
//設置一個404頭:
header(『HTTP/1.1404NotFound');
//設置地址被永久的重定向
header(『HTTP/1.1301MovedPermanently');
//轉到一個新地址
header(『Location:http://www.example.org/『);
//文件延遲轉向:
header(『Refresh:10;url=http://www.example.org/『);
print『';
//當然,也可以使用html語法實現
//<metahttp-equiv=」refresh」content=」10;http://www.example.org//>
//overrideX-Powered-By:PHP:
header(『X-Powered-By:PHP/4.4.0′);
header(『X-Powered-By:Brain/0.6b');
//文檔語言
header(『Content-language:en');
//告訴瀏覽器最後一次修改時間
$time=time()–60;//orfilemtime($fn),etc
header(『Last-Modified:『.gmdate(『D,dMYH:i:s',$time).'GMT');
//告訴瀏覽器文檔內容沒有發生改變
header(『HTTP/1.1304NotModified');
//設置內容長度
header(『Content-Length:1234′);
//設置為一個下載類型
header(『Content-Type:application/octet-stream');
header(『Content-Disposition:attachment;filename=」example.zip」『);
header(『Content-Transfer-Encoding:binary');
//loadthefiletosend:
readfile(『example.zip');
//對當前文檔禁用緩存
header(『Cache-Control:no-cache,no-store,max-age=0,must-revalidate');
header(『Expires:Mon,26Jul199705:00:00GMT');//Dateinthepast
header(『Pragma:no-cache');
//設置內容類型:
header(『Content-Type:text/html;charset=iso-8859-1′);
header(『Content-Type:text/html;charset=utf-8′);
header(『Content-Type:text/plain');//純文本格式
header(『Content-Type:image/jpeg');//JPG***
header(『Content-Type:application/zip');//ZIP文件
header(『Content-Type:application/pdf');//PDF文件
header(『Content-Type:audio/mpeg');//音頻文件
header(『Content-Type:application/x-shockw**e-flash');//Flash動畫
//顯示登陸對話框
header(『HTTP/1.1401Unauthorized');
header(『WWW-Authenticate:Basicrealm=」TopSecret」『);
print『『;
print『enterswronglogindata';
9. php的header問題。
header('Status: 2342');前肯定能輸;
ob函數使用標准參考:
ob_start();
........
if ( something ){
ob_end_clean();
header("Location: yourlocation");
exit;
else{
..........
ob_flush(); //省略
要想header前輸修改php.ini文件
output_handler =mb_output_handler
或 output_handler =on
10. wordpress怎麼修改header.php的源代碼 求大神詳解!
這個是在後台改的,到後台-設置-常規 頁面更改即可。