php数组怎么输出html表格


这篇文章主要介绍了php数组怎么输出html表格的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇php数组怎么输出html表格文章免费云主机域名都会有所收获,下面我们一起来看看吧。代码如下:
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
?}

?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=”
?
// Example
$t1=new xtable();
echo $t1->example().”
$t2=new xtable();
for($i=1;$i
?{
??$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
?{
??$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
?{
??$a[]=$i;
?}
$t4->addrow($a);
$t4->background(array(“pink”,”gold”));
$tit=array(); $tit[]=”Numbers”;
for($i=1;$i
$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数组怎么输出html表格”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注百云主机行业资讯频道。

相关推荐: html div标签布局使用的方法

这篇文章主要介绍了html div标签布局使用的方法的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇html div标签布局使用的方法文章都会有所收获,下面我们一起来看看吧。 CSS是花式表,通俗明了给html标签穿上明媚衣服的名目…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

(0)
打赏 微信扫一扫 微信扫一扫
上一篇 10/09 13:15
下一篇 10/09 13:15

相关推荐