php-html 动态表格分行-数据结构剖析_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php-html 动态表格分行-数据结构剖析

php-html 动态表格分行-数据结构剖析

 2014/5/18 23:28:27  qiaolevip  程序员俱乐部  我要评论(0)
  • 摘要:$files=scandir('.');echo'<tablealign="center"border="1"cellpadding="5"cellspacing="0"width="800"style="min-width:444px;">';$counter=1;$each_columns=4;foreach($filesas$file_num=>$file){if($file_num>1){$file=iconv("GBK","UTF-8",$file)
  • 标签:PHP 数据结构 数据 表格
class="php" name="code">$files = scandir('.');
echo '<table align="center" border="1" cellpadding="5" cellspacing="0" width="800" style="min-width:444px;">';
$counter = 1;
$each_columns = 4;
foreach($files as $file_num => $file) {
	if($file_num > 1){
		$file = iconv("GBK","UTF-8",$file);  //或者 iconv("gb2312","UTF-8",$value);
		if(is_dir($file)){
			$file = '<a href="'.$file.'">'.$file.'</a>';
			if($counter % $each_columns == 1) {
				echo '<tr>';
			}
			echo '<td>'.$counter.$file.'</td>';
			if($counter % $each_columns == 0){
				echo '</tr>';
			}
			$counter++;
		}
	}
}
$counter = $counter-1;
if($counter % $each_columns != 0){
	for($i = 0; $i < ($each_columns-($counter)%$each_columns); $i++){
		echo "<td>&nbsp;</td>";
	}
}
echo '</table>';

?注:本程序动态分行理念适合所有动态语言,js,java,php···

  • 大小: 35.8 KB
  • 查看图片附件
发表评论
用户名: 匿名