如何用PHP制作json的html文件

时间:2014-04-23 16:30:52

标签: php json

我想制作php文件:

  1. 获取所有html模板
  2. 将它们放入数组
  3. 从数组中创建json
  4. 现在我有了一些:

    $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))."'
    );";
    

0 个答案:

没有答案