我有一个php文本文件,其中包含目录中图像的所有名称,然后剥离文件扩展名并显示没有.jpg扩展名的文件名作为链接让用户点击然后命名,什么我正在寻找一种简单的方法,可以将点击的链接转移到变量或找到更简单的解决方案,这样链接一旦点击就会打开一个页面,其中包含默认标题和他们选择的图像,而不会产生数百个HTML目录中每个图像的文件。 我的代码在下面我是PHP的新手,所以原谅我缺乏知识。
提前谢谢你。我也想要一个苹果设备来读这个,所以我想说远离java脚本。
<html>
<head>
<title>Pictures</title>
</head>
<body>
<p>
<?php
// create an array to set page-level variables
$page = array();
$page['title'] = ' PHP';
/* once the file is imported, the variables set above will become available to it */
// include the page header
include('header.php');
?>
<center>
<?php
// loads page links
$x="0";
// readfile
// set file to read
$file = '\filelist.txt' or die('Could not open file!');
// read file into array
$data = file($file) or die('Could not read file!');
// loop through array and print each line
foreach ($data as $line) {
$page[$x]=$line;
$x++;
}
$x--;
for ($i = 0; $i <= $x; $i++)
{
$str=strlen($page[$i]);
$str=bcsub($str,6);
$strr=substr($page[$i],0,$str);
$link[$i]= "<a href=".$page[$i]."jpg>".$strr."</a>";
echo "<td>".$link[$i]."<br/";
}
?>
</P></center>
<?php
// include the page footer
include('/footer.php');
?>
</body>
</html>
答案 0 :(得分:2)
将文件名添加到您要用作目标网页的网址,并使用$ _GET来构建链接。
<a href='landingpage.php?file=<?php echo $filename; ?>'><?php echo $filename; ?></a>
然后是着陆页上的图片链接
<img src='path/to/file/<?php echo $_GET['file'] ?>.jpg' />