adding regular expression in php not work
- by John Smiith
Code
i added ([a-zA-Z0-9\_\-]+) but not work i wan't to include all css files is there is any other way to add??
My code file css.php
header("Content-type: text/css");
$css = array(
'([a-zA-Z0-9\\_\\-]+).css',
);
foreach ($css as $css_file) {
$css_get = file_get_contents($css_file);
echo $css_get;
}
call.php
<link…