<?php
$tabel = array();
$teller = 0;
$handle = opendir(dirname(realpath(__FILE__)).'/images/bbq2015/');
while($file = readdir($handle)){
if($file !== '.' && $file !== '..'){
$tabel[$teller] = $file;
$teller++;
}
}
$n = $tabel.length();
for ($i = 0; $i < $n-1; $i++)
for ($j = 0; $j < $n-$i-1; $j++)
if ($tabel[$j] > $tabel[$j+1])
{
$temp = $tabel[$j];
$tabel[$j] = $tabel[$j+1];
$tabel[$j+1] = $temp;
}
$teller = 0;
while($teller < $n){
echo '<a class="example-image-link" href="images/bbq2015/'.$tabel[$teller].'" data-lightbox="example-set" data-title="BBQ 2015"><img class="halloween2015" src="images/bbq2015/'.$tabel[$teller].'"/></a>';
$teller++;
}
?>
我意识到这可能不是最好的代码,但我正在尝试。 我很想知道我在哪里犯了错误,而不是找我的代码修复。
答案 0 :(得分:-1)
更改
$n= $tabel.length(); //there is no length() function in PHP
到
$n= count($tabel);
count()返回数组中元素的数量。