Baidu sitemap sitemap.xml generated code
Release: 2016-07-25 08:49:11
Original
1288 people have browsed it
Baidu currently does not open sitemap data submission, but you can submit updated data through the open adaptation of Baidu Webmaster Tools.
- function sitemapxml(){
- $user = M('sethouse');//thinkphp data link
- $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");//Yesterday
- $lastweekArr = $link->query("select * from pre_sethouse where status=1 and time> ;$lastweek");//Last week
- $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'] = '';
- }
- $content=''.chr(13).'';
- $content.='
- < loc>http://www.xxx.com
- '.$today.'
- always
- 0.9 priority>
-
- '.chr(13);
- foreach($data_array as $data){
- $content.=create_item ($data);
- }
- $content.='';
- $fp=fopen('sitemap.xml','w+');
- fwrite($fp,$content);
- fclose( $fp);
- }
- function create_item($data){
- $item="n";
- $item.="".$data['loc']." loc>n";
- $item.="".$data['lastmod']."n";
- $item.="".$data[' changefreq']."n";
- $item.="".$data['priority']."n";
- $item.="< data>".$data['data']."n";
- $item.="n";
- return $item;
- }
Copy code
|
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31