将 XSL Feed 从一个 URL 复制到另一个 URL
Copying XSL Feed from one URL to another URL
有一个 RSS 提要:
www.domain1.com/rss.xsl
我需要将此 xsl 提要复制到另一个虚拟主机以制作
www.domain2.com/rsscopy.xsl
我该怎么做?我可以通过 PHP 完成吗?
谢谢:)
您需要使用 file_get_contents
和 file_put_contents
函数。
<?php
$rss = file_get_contents('http://www.domain1.com/rss.xsl');
$filename = 'rssCopy.xsl';
$saveRss = file_put_contents($filename, $rss);
if($saveRss)
{
echo 'RSS Copied';
}
将上述脚本保存在您的 domain2.com
中并通过 URL 调用它。
有一个 RSS 提要:
www.domain1.com/rss.xsl
我需要将此 xsl 提要复制到另一个虚拟主机以制作
www.domain2.com/rsscopy.xsl
我该怎么做?我可以通过 PHP 完成吗?
谢谢:)
您需要使用 file_get_contents
和 file_put_contents
函数。
<?php
$rss = file_get_contents('http://www.domain1.com/rss.xsl');
$filename = 'rssCopy.xsl';
$saveRss = file_put_contents($filename, $rss);
if($saveRss)
{
echo 'RSS Copied';
}
将上述脚本保存在您的 domain2.com
中并通过 URL 调用它。