我讀谷歌Analytics(分析)API文檔,發現我從來沒有見過一個語法/前使用:HTML標記:<<< HTML
<script>
<?php
<<<HTML
cxApi.setChosenVariation(
$chosenVariation, // The index of the variation shown to the visitor
$experimentId // The id of the experiment the user has been exposed to
);
HTML;
?>
</script>
是什麼<<<HTML
做的,這是什麼叫什麼?
稱爲[Heredoc](http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc)。 – Rikesh 2013-05-12 15:37:38
[參考 - 這個符號在PHP中的含義是什麼?](http://stackoverflow.com/q/3737139) – mario 2013-05-12 15:44:25
@mario謝謝!棒極了! – 2013-05-12 15:45:26