Can php use css styles?

藏色散人
Release: 2023-02-27 18:18:01
Original
3442 people have browsed it

Can php use css styles?

Can I use css style in php?

Use PHP files to introduce css styles

html:

Copy after login

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;
Copy after login

For more PHP related knowledge, please visitPHP Chinese website!

The above is the detailed content of Can php use css styles?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!