這篇文章主要介紹用 PHP文件引入css樣式的案例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
用 PHP文件引入css樣式
html:
<link rel="stylesheet" type="text/css" href="http://www.mysite.com/path/?index.css,common.css">
php:
$filename = $_GET; foreach($filename as $key => $value){ $filenameArr = $key; } $filenameArr = explode(',' , $filenameArr); $files = array(); if(count($filenameArr) > 1){ foreach($filenameArr as $key => $value){ $arr = explode('_', $value); $files[] = $arr[0].'.'.$arr[1]; } }else{ $arr = explode('_', $filenameArr[0]); $files[] = $arr[0].'.'.$arr[1]; } $context = stream_context_create( array( "http" => array( "header" => "User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36", ) ) ); //css聲明 header('Content-type: text/css'); $content = ''; foreach($files as $key => $value){ $content .= iconv("utf-8", "gb2312",file_get_contents('http://www.mysite.com/path/to/' . $value, false, $context)); } echo $content;
以上是用 PHP文件引入css樣式的案例的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站制作公司行業(yè)資訊頻道!
當(dāng)前標(biāo)題:用PHP文件引入css樣式的案例-創(chuàng)新互聯(lián)
鏈接URL:http://jinyejixie.com/article20/dshgjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、標(biāo)簽優(yōu)化、網(wǎng)站策劃、網(wǎng)站收錄、域名注冊(cè)、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容