所以我有这段代码:
<?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可以读取它。
甚至可以把它放在两个引号之外吗?
答案 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>;"
?>