在 SimplePie (PHP) 中创建并包含变量
在下面的代码中,如何将 VAR 设置为某个变量,然后将其作为提要 URL 包含在 SimplePie 代码中? “feed”代码来自 Simplepie PHP 库。
<?php
$VAR = "http://website.com/feed/";
$feed1 = new SimplePie();
$feed1->set_feed_url('$VAR');
$feed1->init();
?>
Within the code below, how do I set VAR as some variable and then include it within the SimplePie code as the feed URL? The "feed" code is from the Simplepie PHP libary.
<?php
$VAR = "http://website.com/feed/";
$feed1 = new SimplePie();
$feed1->set_feed_url('$VAR');
$feed1->init();
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定简单馅饼。但如果您使用单引号,它将不会被处理。尝试使用双引号或更好,您不需要任何引号。
试试这个:
I m not sure about Simple Pie. But if you use single quotes it wont be processed. Try double quotes or better you dont need any quotes for that.
Try this :