我在 PHP 中创建相册我在目录库中有我的画廊,我编写代码来显示该目录中的所有文件夹。
$base = "uploads/pages/Gallery";
$thumbs = "thumbs";
$get_album = $_GET['album'];
$openthumbs = opendir($base."/".$thumbs);
if(!$get_album){
echo "<center><b><p>Επιλέξτε Album</p></b></center>";
$handle = opendir($base);
while(($file = readdir($handle))!==FALSE){
$file = htmlspecialchars($file);
if(is_dir($base."/".$file) && $file !="." && $file !=".." && $file !="$thumbs"){
?>
<div class="album">
<div class="albumbody">
</div>
<div class="albumtitle"><?php echo "<a href='$page?album=$file'>$file</a>";?>
</div>
</div>
我可以看到专辑,但希腊语编码有问题,当我用英文写专辑名称时我没有任何问题,但在希腊语中我无法阅读。所有页面都是希腊语我没有任何问题,我只有文件夹名称有问题。有人可以帮我解决这个问题。非常感谢。