首页 >

将php数组输出html表格办法【PHP】

后端开发|php教程将php数组输出html表格办法【PHP】
php数组,输出html,表格
后端开发-php教程
复制代码 代码如下:
<?php
class xtable
{
private $tit,$arr,$fons,$sextra;
public function __construct()
{
$this->tit=array(); // strings with titles for first row
$this->arr=array(); // data to show on cells
$this->fons=array(“#EEEEEE”,”#CCEEEE”); // background colors for odd and even rows
$this->sextra=””; // extra html code for table tag
}
微信app 源码,vscode扩展商店镜像,ubuntu ios开发,tomcat8配置jdk,c 连sqlite,服装网页设计的理念,服务器和宽带租赁,jquery 图片选择 插件,pte前端框架,爬虫挤爆内存,php的date函数,沈阳seo博客,springboot前台代码,响应式个人网站模板下载,网页设计线型素材大全,手机版电影网站模板免费下载,织梦cms后台登陆不上,淘宝登录页面代码下载,星外虚拟主机管理系统 模板,易语言网站程序源码lzw
public function extra($s) // add some html code for the tag table
{
$this->sextra=$s;
}
public function background($arr) {if (is_array($arr)) $this->fons=$arr; else $this->fons=array($arr,$arr);}
public function titles($text,$style=””) {$this->tit=$text; $this->sesttit=$style;}
public function addrow($a) {$this->arr[]=$a;}
public function addrows($arr) {$n=count($arr); for($i=0;$iaddrow($arr[$i]);}
public function html()
{
$cfondos=$this->fons;
$titulos=”
最符合seo的网站源码,Ubuntu修改终端目录,杨梅可以爬虫吗,corvova php,在seo测验lzw
“;
$t=count($this->tit);
for($k=0;$k<$t;$k++)
{
$titulos.=sprintf(“
kaldi 源码,ubuntu 什么东西,树莓派python 爬虫,fmp php,盖州seo营销lzw
%s

“,$this->tit[$k]);
}
$titulos.=”

“;

$celdas=””;
$n=count($this->arr);
for($i=0;$i<$n;$i++)
{
$celdas.=sprintf(“

“,$this->fons[$i%2]);
$linea=$this->arr[$i];
$m=count($linea);
for($j=0;$j<$m;$j++)
$celdas.=sprintf(“

%s

“,””,$linea[$j]);
$celdas.=”

“;
}
return sprintf(“

%s%s

“,$this->sextra,$titulos,$celdas);
}
public function example()
{
$tit=array(“Apellidos”,”Nombre”,”Telefono”);
$r1=array(“Garcia”,”Ivan”,”888″);
$r2=array(“Marco”,”Alfonso”,”555″);
$x=new xtable();
$x->titles($tit); //take titles array
$x->addrows(array($r1,$r2)); // take all rows at same time
return $x->html(); //return html code to get/show/save it
}
}


// Example
$t1=new xtable();
echo $t1->example().”


“;

$t2=new xtable();
for($i=1;$i<=10;$i+=2)
{
$t2->addrow(array(“ODD”,$i));
$t2->addrow(array(“EVEN”,$i+1));
}
$t2->background(array(“pink”,”gold”));
$t2->titles(array(“TYPE”,”#”));
$t2->extra(” style=’width:500px; background-color:cyan; color:navy;'”);
echo $t2->html().”


“;

$t3=new xtable();
for($i=1;$i<=6;$i++)
{
$t3->addrow(array(“5x”.$i,5*$i));

}
$t3->background(array(“olive”,”maroon”));
$t3->titles(array(“Multiplication table”,”5″));
$t3->extra(“style=’border:dotted red 10px; padding-left:4px;padding-right:4px; text-align:right;width:500px; background-color:black; color:white;'”);
echo $t3->html().”


“;

$t4=new xtable();
$a=array(“#”);
for($i=1;$i<=10;$i++)
{
$a[]=$i;
}
$t4->addrow($a);
$t4->background(array(“pink”,”gold”));
$tit=array(); $tit[]=”Numbers”;
for($i=1;$i<=10;$i++) $tit[]="#";
$t4->titles($tit);
$t4->extra(“style=’border:solid 1px silver; padding-left:4px;padding-right:4px; text-align:center;width:500px; background-color:cyan; color:navy;'”);
echo $t4->html().”


“;
?>


将php数组输出html表格办法【PHP】
  • php获取数组长度办法(有实例)
  • php获取数组长度办法(有实例) | php获取数组长度办法(有实例) ...

    将php数组输出html表格办法【PHP】
  • php怎么给数组存放10个数字并求和
  • php怎么给数组存放10个数字并求和 | php怎么给数组存放10个数字并求和 ...

    将php数组输出html表格办法【PHP】
  • php 两个数组能组合多少种可能
  • php 两个数组能组合多少种可能 | php 两个数组能组合多少种可能 ...