欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中的关于xml的使用(SEO)

程序员文章站 2022-05-22 08:05:53
...
关于xml使用,这个地方是为了SEO收录写的两个函数,仅供参考,欢迎交流,有问题欢迎提问,具体的函数可以查文档。
functionedit_xml_file($xml_file_path,$datas,$is_index = false,$is_compress = true){$doc = new DomDocument('1.0', 'utf-8');
     $doc->formatOutput = true;
     $flag = false;
     if( !@file_exists($xml_file_path) || !$doc->load($xml_file_path)) {    
        $flag = create_xml_file($xml_file_path,$datas,$is_index,$is_compress);
         return$flag;
     } 
    //读取文件数据$xmldata = simplexml_load_file($xml_file_path);
    $newxmldata = array();
    $xmL_url = array();
    foreach ($xmldataas$key=>$obj){
         $obj = (array) $obj;
         if(isset($obj['lastmod'])){
             $obj['lastmod'] = date('c',time());
         }
         $xmL_url[] = $obj['loc'];
         $newxmldata[][$key] = $obj;
    }
    //将新添加的数据放在一起foreach ($datasas$data){
        if(!in_array($data[$key]['loc'], $xmL_url)){
            $newxmldata[] = $data;
        }
    }

    //根据新数据重新更新创建文件if(!empty($newxmldata) && unlink($xml_file_path)){
        $flag = create_xml_file($xml_file_path,$newxmldata,$is_index,$is_compress);
    }
    unset($datas);
    return$flag;
}

/** xml,追加数据
 * @param xml_file_path 文件路径,$data 数据,$is_index 为了区分是地图文件还是地图索引,默认是地图文件
 * @author zdj
 * @date 2015-01-23
 */functionadd_data_xml_file($xml_file_path,$datas,$is_index = false,$is_compress = true){$doc = new DomDocument('1.0', 'utf-8');
    $doc->formatOutput = true;
    $flag = false;
    if( !@file_exists($xml_file_path) || !$doc->load($xml_file_path)) {
        $flag = create_xml_file($xml_file_path,$datas,$is_index,$is_compress);
        return$flag;
    }
    $root = $doc->documentElement;
    foreach ($datasas$data){
        foreach ($dataas$key=>$obj){
            $key_dom = $doc->createElement($key);
            foreach ($objas$attribute =>$attribute_value){
                $attribute_dom = $doc->createElement($attribute);
                $attribute_dom_value = $doc->createTextNode($attribute_value);
                $attribute_dom->appendChild($attribute_dom_value);
                $key_dom->appendChild($attribute_dom);
            }
            $root->appendChild($key_dom);
        }
    }
    $doc->appendChild($root);
    $doc->save($xml_file_path);
    //创建压缩的文件$xml_gz_file_path = $xml_file_path.'.gz';
    if($is_compress){
        $fp = gzopen ($xml_gz_file_path, 'w9');
        gzwrite ($fp, $doc->saveXML());
        gzclose($fp);
    }
    //给文件赋予权限//给文件赋予权限if(file_exists($xml_file_path)){
        chmod($xml_file_path, 0744);
    }
    if(file_exists($xml_gz_file_path)){
        chmod($xml_gz_file_path, 0744);
    }
    unset($datas);
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了php中的关于xml的使用(SEO),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

php中的关于xml的使用(SEO)

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频