PHP 코드
ob_end_clean(); ob_start(); //读取文件mimetype信息 $finfo = finfo_open(FILEINFO_MIME); $mimetype = finfo_file($finfo, $uri); finfo_close($finfo); //打开文件 $file = fopen($uri, 'r'); $file_size = filesize($uri); //声明头信息 Header("Content-type: $mimetype"); Header("Accept-Ranges: bytes"); Header("Accept-Length: ".$file_size); // 输出文件内容 echo fread($file,$file_size); fclose($file);
css content
html{ font-size: 100px; }
html content
自动换行 <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="http://127.0.0.1/res/public/css/style.css"> <title>test</title> </head> <body>hello world
</body> </html>
php는 다음과 같이 CSS 파일을 로드합니다.
http://127.0.0.1/res/public/css/style.css
/res/public/css/style.css
/res/ 모듈
을 분해하고 실제 경로 wwwapppublicrescssstyle.css를 가져오고 반환된 콘텐츠를 읽어보세요.
실제 스타일이 성공적으로 적용되지 않았습니다
이유는 무엇인가요? 전문가님들의 답변을 구합니다