需要帮助,将PHP命令放在引号之外

时间:2017-06-09 17:19:15

标签: php iframe

所以我有这段代码:

<?php  $field['url'] = '<iframe src="http://xxx.xx/= **the_title();**" width="640" height="360" allowscriptaccess="always" allowfullscreen="true" scrolling="no" frameborder="0"></iframe>;'  ?>

我需要将the_title();放在引号之外,以便PHP可以读取它。 甚至可以把它放在两个引号之外吗?

2 个答案:

答案 0 :(得分:2)

是。这称为连接,是任何语言中字符串构建的基本部分。在PHP中,这是通过.连接运算符完成的。

"string etc ".some_func()." continuation of string"

请注意,您可以使用单引号或双引号。

答案 1 :(得分:1)

<?php
$title = the_title();
$field['url'] = "<iframe src='http://xxx.xx/=$title' width='640' height='360' allowscriptaccess='always' allowfullscreen='true' scrolling='no' frameborder='0'></iframe>;"
?>