我正在使用以下 php 代码将图像文件夹加载到 html 页面中。
我遇到的问题是,为了用作图像标题而引入的文件名显示了文件扩展名。
正在提取名称的代码部分是 title='$img'
如何让它删除文件扩展名?
<?php
$string =array();
$filePath='images/schools/';
$dir = opendir($filePath);
while ($file = readdir($dir)) {
if (eregi("\.png",$file) || eregi("\.jpeg",$file) || eregi("\.gif",$file) || eregi("\.jpg",$file) ) {
$string[] = $file;
}
}
while (sizeof($string) != 0) {
$img = array_pop($string);
echo "<img src='$filePath$img' title='$img' />";
}
?>