PHP(图像文件夹)图像按字母顺序列出?
我在尝试按字母顺序列出图像时遇到 PHP 脚本问题。我急需这个,而且我对 PHP 不太了解。我试图使用 scandir() 但没有成功。感谢您的帮助!!
这是代码:
function listerImages($repertoire){
$i = 0;
$repertoireCourant = opendir('./'.$repertoire);
while($fichierTrouve = readdir($repertoireCourant)){
$fichierTemp = "";
if($repertoire == '.')
$fichierTemp = $fichierTrouve;
else
$fichierTemp = $repertoire.'/'.$fichierTrouve;
if(estUneImageValide($fichierTemp)){
echo afficherPhoto($fichierTemp,$i);
chmod($fichierTemp,0700);
}
$i++;
}
}
I'm having problems with a PHP script trying to list images alphabetically. I need this urgently and I have not much knowledge of PHP. I was trying to use scandir() but I'm not succeeding. Thanks for your help!!
Here is the code:
function listerImages($repertoire){
$i = 0;
$repertoireCourant = opendir('./'.$repertoire);
while($fichierTrouve = readdir($repertoireCourant)){
$fichierTemp = "";
if($repertoire == '.')
$fichierTemp = $fichierTrouve;
else
$fichierTemp = $repertoire.'/'.$fichierTrouve;
if(estUneImageValide($fichierTemp)){
echo afficherPhoto($fichierTemp,$i);
chmod($fichierTemp,0700);
}
$i++;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将条目存储在数组中,以便您可以在输出之前对它们进行排序。
Store the entries in an array so that you can sort them before outputting.
我同意伊格纳西奥的观点。请参阅 PHP 手册的数组排序部分。
I agree with Ignacio. See the Sorting Arrays section of the PHP manual.