在PHP中调用Feedburner Ping URL

时间:2011-02-26 04:30:14

标签: php feedburner

我一直想知道如何通过在ping中ping他们来让feedburner更新我的RSS Feed。有没有办法在php中调用ping进行ping?

ping url的例子:

http://feedburner.google.com/fb/a/pingSubmit?bloglink=http%3A%2F%2Fgoogle.com

1 个答案:

答案 0 :(得分:3)

file_get_contents("http://feedburner.google.com/fb/a/pingSubmit?bloglink=http%3A%2F%2Fgoogle.com");

这就是你所需要的一切。