从PHP变量嵌入HTML代码

时间:2013-08-17 18:27:24

标签: php html embed

在谷歌搜索超过3个小时后,我发现人们正在做我正在做的事情,但无论如何,这就是我想要做的事情:

我有一个变量 $ location ,其中包含一个HTML代码(嵌入式谷歌地图代码),即

<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0"  
        marginwidth="0" src="https://www.google.com/maps/ms?........in a larger 
        map></iframe>

现在在php代码中,如何才能显示地图? 以下输出HTML代码作为文本

<?php echo $loation; ?>

谢谢!

1 个答案:

答案 0 :(得分:1)

您拼写的变量名称错误$loation; - 应为$location;。假设您正确设置变量,如

$location = '...';

或使用heredoc语法:

$location = <<<STR
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0"  
        marginwidth="0" src="https://www.google.com/maps/ms?........in a larger 
        map></iframe>
STR;

你应该没事。