css_download.php
来自「一个bug追踪工具的PHP编写的源代码」· PHP 代码 · 共 23 行
PHP
23 行
<?php #$zip->ctrl_dir = 'man'; # --- creates the page --- ob_start(); include( 'core.php' ); include( 'css_inc.php' ); $content = ob_get_contents (); ob_end_clean(); header("Cache-control: private"); #header( "Content-type: application/octet-stream" ); header( "Content-type: text/css" ); header( "Content-Disposition: attachment; filename=\"filename.css\"" ); header( "Content-Description: CSS File" ); # --- --- echo $content;?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?