我想制作php文件:
现在我有了一些:
$dirpath = "../templates/popups/";
$dh = opendir($dirpath);
$popups = array();
while (false !== ($file = readdir($dh))) {
if (!is_dir($file)) {
$popups[substr($file,0,-5)] =
strip_tags(file_get_contents("../templates/popups/".$file));
}
}
closedir($dh);
$popups = array_map('htmlentities',$popups);
$screens = array_map('htmlentities',$screens);
echo "tmpPopups = JSON.parse('".html_entity_decode(
json_encode($popups, JSON_HEX_TAG|JSON_HEX_AMP|JSON_HEX_QUOT))."'
);";