2013-04-13 73 views
0

打開隨機圖片我犯了一個PHP的線,從某個目錄PICS隨機圖片:在新標籤PHP

<?php 

    function random_pic($dir = 'pics') 
    { 
    $files = glob($dir . '/*.*'); 
    $file = array_rand($files); 
    return $files[$file]; 
    } 

?> 

現在我不知道怎麼弄的隨機文件是在一個新的標籤頁中打開。 。 ,我想一起工作的代碼是下面這樣:我想做

<a href="" title="Click to open in new page!!"> 
    <img src=""<?php echo random_pic(); ?>" alt="" height="400" width="450" border="0"/> 
</a> 

,這樣當你點擊它在新標籤頁中打開圖片(或在同一頁上,但沒有重裝),

謝謝! :)

回答

1
<?php $random_pic = random_pic(); ?> 
<a href="<?php echo $random_pic; ?>" target="_blank" title="Click to open in new page!!"><img src="<?php echo $random_pic; ?>" alt="" height="400" width="450" border="0"/></a> 
+0

謝謝!它工作完美:) – Phew

1

將target =「_ blank」添加到錨點元素,以強制瀏覽器根據用戶的配置打開新的選項卡或窗口。