首页 > 代码库 > sitemap站点地图
sitemap站点地图
<?php $root = ‘/home/webroot/cmsnew.com/html/hk‘; //当前目录 $dir_array = array(‘news‘,‘stocks‘, ‘shhkc‘, ‘warrants‘, ‘ipo‘, ‘ashares‘, ‘futures‘, ‘forex‘, ‘commodity‘, ‘events‘); //if(isset($argv) && count($argv)!==0){ // $dir_array = $argv[1]; //} list_file($root,$dir_array); function list_file($root,$dir_array) { foreach ($dir_array as $dir) {//遍历 $file_location = $root .‘/‘. $dir;//生成路径 //$file = ‘/home/xiongx/sitemap‘ . ‘/‘ .$dir. ‘.xml‘; //todo 修改为正式要生成的地址 $file = ‘/home/webroot/cmsnew.com/html/hk/sitemap‘ . ‘/‘ .$dir. ‘.xml‘; if(file_exists($file)){ @unlink($file); $realname = basename($file,‘.xml‘); for($i=1;$i<=9;$i++){ $newname = $realname . $i; @unlink(str_replace($realname,$newname,$file)); } } file_put_contents($file,"<urlset>",FILE_APPEND); add_site($file_location,$file); file_put_contents($file,"</urlset>",FILE_APPEND); } } function add_site($dir,&$file){ if(preg_match(‘/^[a-z]{1,30}$/i‘,substr($dir,strripos($dir,‘/‘)+1))) { $content = "<url><loc>" . "http://www.cnfol.hk/" . str_replace(‘/home/webroot/cmsnew.com/html/hk/‘, ‘‘, $dir) . "</loc></url>"; file_put_contents($file,$content,FILE_APPEND); } $dir_arr = scandir($dir); array_shift($dir_arr); array_shift($dir_arr); foreach($dir_arr as $v){ if(is_dir($dir . ‘/‘ . $v)){ add_site($dir . ‘/‘ . $v,$file); }elseif(is_file($dir . ‘/‘ . $v) && preg_match(‘/(\.shtml)$/i‘,$dir . ‘/‘ . $v)){ $content = "<url><loc>" . "http://www.cnfol.hk/" . str_replace(‘/home/webroot/cmsnew.com/html/hk/‘, ‘‘, $dir. ‘/‘ . $v) . "</loc></url>"; file_put_contents($file,$content,FILE_APPEND); $filesize=abs(filesize($file)); if($filesize>5120000){ file_put_contents($file,"</urlset>",FILE_APPEND); $realname = basename($file,‘.xml‘); $n = (int)$realname + 1 ; $newname = $realname . $n; $file = str_replace($realname,$newname,$file); file_put_contents($file,"<urlset>",FILE_APPEND); } } } }
sitemap站点地图
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。