我想将一个随机 swf 变量回显到 html 中,但我似乎无法得到正确的结果。
通过检查萤火虫,我可以看到它输出了我的 php 代码 php echo '$randomImage'
到目前为止我所拥有的:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html>
<head>
<style media="screen" type="text/css">
.content {
position: absolute;
height: 200px;
width: 400px;
margin: -100px 0 0 -200px;
top: 25%;
left: 50%;
}
</style>
</head>
<body>
<?php
$imagesDir = '/';
$images = glob($imagesDir . '*.{swf}', GLOB_BRACE);
$randomImage = $images[array_rand($images)];
?>
<div class="content">
<center><object width="675" height="517"><param value="<?php echo '$randomImage' ?>" name="movie"><embed width="475" height="317" type="application/x-shockwave-flash" src="<?php echo '$randomImage' ?>"></object></center><center></center>
</div>
</body>
</html>