我可以在PHP内部的JavaScript中编写PHP吗?

时间:2014-10-03 12:38:00

标签: javascript php

在PHP脚本中我有这个:

echo <<<EOD

<script type="text/javascript">
document.getElementById('my_element_id').innerHTML='Do stuff';
</script>

EOD;

我可以在JavaScript中添加PHP吗?替换&#34;做东西&#34;部分与PHP代码?如果是,我该怎么做?

3 个答案:

答案 0 :(得分:3)

首先,应该注意这与javascript无关。您可以使用任何形式的文本。您的实际问题是如何在heredoc中使用变量。

Heredoc定义如下:

  

Nowdocs是单引号字符串,heredocs是双引号字符串。类似于heredoc指定了nowdoc,但是在nowdoc内部没有进行解析。该构造非常适合嵌入PHP代码或其他大块文本而无需转义。

这意味着,因为这有效:

$name = 'Foo';

echo "My name is $name"; // Using double quotes so variables get expanded

然后这也有效:

$name = 'Foo';

echo <<<EOD
    My name is <strong>$name</strong>
EOD;  // Using heredoc so variables get expanded

基本上意味着是,只要您先将'Do stuff'内容放入变量中。请注意,如果您使用更高级的变量/数组,最好在将其粘贴到JS代码之前执行$array = json_encode($array)(想象如果$nameThe Boss's Wife - 那么撇号会破坏您的JS,如果你不编码它。)

DEMO

答案 1 :(得分:0)

可以这样做:

<?php 
$anyphpvariable='foo';
echo <<<EOD 
    <script type="text/javascript">
       document.getElementById('my_element_id').innerHTML=$anyphpvariable;

    </script>
EOD;
?>

来自php的任何内容都可以分配给JS及其良好实践。 但JS不能为PHP分配任何东西。

答案 2 :(得分:-2)

是的,但是如果我将代码放在相关的HTML之后,我只能得到你想要的东西。您可以回显脚本...例如,这将起作用:

<div id="footer">Hey</div>
<?php 
$myVar = 'Hello';
echo "<SCRIPT>
   document.getElementById('footer').innerHTML = '$myVar';
</SCRIPT>";
?> // You will see Hello in the footer

但这不起作用:

<?php 
$myVar = 'Hello';
echo "<SCRIPT>
   document.getElementById('footer').innerHTML = '$myVar';
</SCRIPT>";
?>
<div id="footer">Hey</div>// You will see Hey in the footer

作为旁注,这些其他功能/方法也适用:

$myVar = 'Hi';
echo "<SCRIPT>
    alert('$myVar');
</SCRIPT>";//Alerts 'Hi'

$myVar = 'home.php';
echo "<SCRIPT>
    location = '$myVar';
</SCRIPT>";//Takes you to home.php

$myVar = 'hi';
echo "<SCRIPT>
    myFunction('$myVar');
</SCRIPT>";//calls myFunction with argument $myVar