在字符串中添加php

时间:2013-03-18 01:28:14

标签: php html wordpress

我想拍摄

$imgsrc = get_template_directory_uri() . '/s.php?strings=';

并在字符串后添加the_content_rss('', TRUE, '', 4)

我该怎么做?

$imgsrc = get_template_directory_uri() . '/titles.php?strings=' . the_content_rss('', TRUE, '', 4);

似乎没有输出单个网址。

1 个答案:

答案 0 :(得分:0)

您应该了解的第一件事是

  

字符串连接需要返回值而不输出/回显它们的函数。

因此,请确保get_template_directory_uri()the_content_rss('', TRUE, '', 4);返回值而不是显示它们。如果两个函数都返回一个值,则应按预期构建URL。