创建地理提要

发布于 2024-11-01 10:49:51 字数 119 浏览 0 评论 0原文

我是 geoRss 的新手。

我们如何编写 geoRss feed。我在 mysql 数据库中有我的经纬度值和一些其他字段,我想将它们添加到 geoRss feed 中。

谢谢和问候, 阿什什

I am new to geoRss.

How can we write the geoRss feed. I have my lat long values and some other fields in mysql db which i want to add in the geoRss feed.

Thanks and Regards,
Ashish

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

裂开嘴轻声笑有多痛 2024-11-08 10:49:51

尝试此代码输出 geoRSS

header("Content-type: text/xml");
    $xml_output = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
    $xml_output .= "<rss version=\"2.0\" 
      xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\" 
      xmlns:dc=\"http://purl.org/dc/elements/1.1/\">";

    $xml_output .= "<channel>";
    $xml_output .= "<title>My GeoRSS</title>
     <description>Description here</description>
     <link>http://url-here.com/</link>
     <dc:publisher>your_name</dc:publisher>
     <pubDate>Wed, 13 Apr 2011 23:56:15 PST</pubDate>
     <item>
       <pubDate>Wed, 13 Apr 2011 23:56:15 PST</pubDate>
       <title>Feed title</title>
       <description>Feed description</description>
       <link>Feed URL</link>
       <geo:lat>Latitude</geo:lat>
       <geo:long>Longitude</geo:long>
     </item>
   </channel>
</rss>
";

print $xml_output;

替换从数据库中获取的相应字段。

Try this code to output geoRSS

header("Content-type: text/xml");
    $xml_output = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
    $xml_output .= "<rss version=\"2.0\" 
      xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\" 
      xmlns:dc=\"http://purl.org/dc/elements/1.1/\">";

    $xml_output .= "<channel>";
    $xml_output .= "<title>My GeoRSS</title>
     <description>Description here</description>
     <link>http://url-here.com/</link>
     <dc:publisher>your_name</dc:publisher>
     <pubDate>Wed, 13 Apr 2011 23:56:15 PST</pubDate>
     <item>
       <pubDate>Wed, 13 Apr 2011 23:56:15 PST</pubDate>
       <title>Feed title</title>
       <description>Feed description</description>
       <link>Feed URL</link>
       <geo:lat>Latitude</geo:lat>
       <geo:long>Longitude</geo:long>
     </item>
   </channel>
</rss>
";

print $xml_output;

Replace the respective fields as taken from your database..

翻了热茶 2024-11-08 10:49:51

[在此处输入链接描述][1]

[1]: https://"My GeoRSS
描述在这里
http://url-here.com/
您的名字
2011 年 4 月 13 日星期三 23:56:15(太平洋标准时间)

2011 年 4 月 13 日星期三 23:56:15(太平洋标准时间)
提要标题
饲料描述
提要网址
geo:latLatitude
geo:long经度

[enter link description here][1]

[1]: https://"My GeoRSS
Description here
http://url-here.com/
<dc:publisher>your_name</dc:publisher>
Wed, 13 Apr 2011 23:56:15 PST

Wed, 13 Apr 2011 23:56:15 PST
Feed title
Feed description
Feed URL
geo:latLatitude</geo:lat>
geo:longLongitude</geo:long>

"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文