kenken999/php
0
1<?php2require_once("include/phpfunctions.php");3header("Content-Type: text/css");4 5$file = getQueryString();6$ext = substr($file, strrpos($file, '.') + 1);7if( $ext != "css" || strpos($file,'..') !== false )8 exit();9$css = myfile_get_contents(getabspath($file), "r");10$css = preg_replace(array(11 "/ :not\(.*?\)/",12 "/ :first-child/",13 "/ :last-child/",14 "/ :nth-last-child\(.*?\)/"),15 " *",$css);16 17$css = preg_replace(array(18 "/:not\(.*?\)/",19 "/:first-child/",20 "/:last-child/",21 "/:nth-last-child\(.*?\)/"),22 "",$css);23echo $css;24?>