0

在谷歌搜索超过 3 小时后,我发现 ppl 与我正在做的事情相反,但无论如何,这就是我想做的事情:

我有一个变量$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; ?>

谢谢!

4

1 回答 1

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;

你应该没事。

于 2013-08-18T20:15:34.103 回答