百度站点地图(百度sitemap)生成方法分享
2015-01-24信息快讯网
百度目前还没有开放站点地图数据提交,但可以通过,百度站长工具的开放适配提交更新数据,大家参考使用吧
function sitemapxml(){
$user = M('sethouse');//thinkphp 数据链接
$today = date("Y-m-d",time());
$yesterday = mktime(0, 0, 0, date("m") , date("d")-1, date("Y"));
$lastweek = strtotime("-1 week");
$link = M();
$yesterdayArr = $link->query("select * from pre_sethouse where status=1 and time>$yesterday");//昨天
$lastweekArr = $link->query("select * from pre_sethouse where status=1 and time>$lastweek");//上周
$url = "http://www.xxx.com/House/housecontent/id/";
foreach($yesterdayArr as $k=>$v){
$data_array[$k]['loc'] = $url.$v['hid'];
$data_array[$k]['lastmod'] = $today;
$data_array[$k]['changefreq'] = 'always';
$data_array[$k]['priority'] = '0.6';
$data_array[$k]['data'] = '<display></display>';
}
$content='<?xml version="1.0" encoding="UTF-8"?><urlset>'.chr(13).'';
$content.='<url>
<loc>http://www.xxx.com</loc>
<lastmod>'.$today.'</lastmod>
<changefreq>always</changefreq>
<priority>0.9</priority>
<data><display></display></data>
</url>'.chr(13);
foreach($data_array as $data){
$content.=create_item($data);
}
$content.='</urlset>';
$fp=fopen('sitemap.xml','w+');
fwrite($fp,$content);
fclose($fp);
}
function create_item($data){
$item="<url>\n";
$item.="<loc>".$data['loc']."</loc>\n";
$item.="<lastmod>".$data['lastmod']."</lastmod>\n";
$item.="<changefreq>".$data['changefreq']."</changefreq>\n";
$item.="<priority>".$data['priority']."</priority>\n";
$item.="<data>".$data['data']."</data>\n";
$item.="</url>\n";
return $item;
}
php生成百度sitemap站点地图类函数实例
PHP内置过滤器FILTER使用实例
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
destoon整合ucenter后注册页面不跳转的解决方法
destoon整合UCenter图文教程
destoon之URL Rewrite(伪静态)设置方法详解
destoon利用Rewrite规则设置网站安全
ThinkPHP CURD方法之limit方法详解
CodeIgniter CLI模式简介
Yii结合CKEditor实现图片上传功能
Codeigniter上传图片出现“You did not select a file to upload”错误解决办法
CodeIgniter框架过滤HTML危险代码
eaglephp使用微信api接口开发微信框架
利用phpexcel把excel导入数据库和数据库导出excel实现
codeigniter使用技巧批量插入数据实例方法分享
php使用filter过滤器验证邮箱 ipv6地址 url验证
php使用strtotime和date函数判断日期是否有效代码分享
php安装xdebug/php安装pear/phpunit详解步骤(图)
解决file_get_contents无法请求https连接的方法
限制ckeditor上传图片文件大小的方法
php ckeditor上传图片文件名乱码解决方法
php解析xml提示Invalid byte 1 of 1-byte UTF-8 sequence错误的处理方法
CodeIgniter生成网站sitemap地图的方法
PHP生成sitemap.xml地图函数
CodeIgniter使用phpcms模板引擎
CodeIgniter基本配置详细介绍