我正在尝试使用一些 PHP,但我似乎无法弄清楚以下内容。
我可以通过 PHP 连接创建一个字符串:
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n";
但是如果你想用一个变量来做这件事呢?(我猜WP的函数可以称为变量。)我在这里很迷茫。以下不起作用。或者至少,我的文本编辑器抛出了一个未知错误。
<?php
if ( is_404() ) {
echo "<script src='" . get_stylesheet_directory_uri(); . "/sm/script/soundmanager2-nodebug-jsmin.js'></script>
<script>
soundManager.setup({
url: '" . get_stylesheet_directory_uri(); . "/sm/swf/',
onready: function() {
var mySound = soundManager.createSound({
id: 'aSound',
url: 'http://www.mysite.com/sound.mp3',
volume: '25'
});
mySound.play();
},
ontimeout: function() {
}
});
</script>"
}
?>