1
需要使用JavaScript從XML文件檢索到的JavaScript鏈接。代碼如下:在PHP中使用PHP檢索到的打開URL
<?php
$url = "map.xml" ;
$xml = simplexml_load_file($url);
$link = $xml->url[mt_rand(0,count($xml->url)-1)]->loc ; // Get Random Location
?>
<html>
<head>
<title></title>
</head>
<body>
<script>
$(document).ready(function(){
window.open($link, "_blank"); // will open new tab on document ready
});
</script>
</body>
</html>
啊,太棒了。謝謝!這工作(不知道爲什麼我忽視了顯而易見的)。歡呼聲 – jiblylabs
請使用'<?='。我編輯了你的答案。 – bytecode77
@bytecode77,太好了,謝謝 – madox2