PHP使用DOMDocument类生成HTML实例(包含常见标签元素)

前端之家收集整理的这篇文章主要介绍了PHP使用DOMDocument类生成HTML实例(包含常见标签元素)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在这一章节里, 我们来了解下如何利用核心(core) PHP 生成 HTML 文件

最近我在查询 PHP.net 的时候,发现 DOMDocument 这个类非常的有意思, 可以用来生成 XML 或 HTML 文件, DOMDocument 为我们提供了一系列的方法生成 XML/HTML 标签并插入到 DOM 中, 现在就让我们来看下如何生成

这里先来看下, 利用它所提供的方法生成效果,见下图:

一、创建新的 DOM 文件

代码如下:
//将生成的标签或代码输出到页面
echo $dom->saveHTML();

二、在 DOM 文件添加新的 HTML 元素

代码如下:
//创建新的 style 标签和 CSS 内容
$style = $dom->createElement('style',$css_text);

//添加该 style 标签到 DOM 文件
$dom->appendChild($style);

//如下是输出效果

这里需要说下就是 createElement 方法, 当你想创建
代码如下:
//创建新的 p 标签和内容
$p = $dom->createElement('p',$p_text);

//创建新的属性 'id'
$domAttribute = $dom->createAttribute('id');

//为属性 'id' 添加
$domAttribute->value = 'description';

//添加属性到 p 标签
$p->appendChild($domAttribute);

//添加该 p 标签到 DOM 文件
$dom->appendChild($p);

//如下是输出效果
<p id="description">
某一天

四、添加 Form 元素

添加 textBox
代码如下:
createElement('input');

$domAttribute = $dom->createAttribute('type');
$domAttribute->value = 'text';
$input->appendChild($domAttribute);

$domAttribute = $dom->createAttribute('name');
$domAttribute->value = 'e-mail';
$input->appendChild($domAttribute);

$dom->appendChild($input);

//如下是输出效果
<input type="text" name="e-mail">

五、创建 Table

代码如下:
createElement('table');

$domAttribute = $dom->createAttribute('id');
$domAttribute->value = 'my_table';

$tr = $dom->createElement('tr');
$table->appendChild($tr);

$td = $dom->createElement('td','Label');
$tr->appendChild($td);

$td = $dom->createElement('td','Value');
$tr->appendChild($td);

$table->appendChild($domAttribute);

$dom->appendChild($table);

//如下是输出效果
<table id="my_table">

最后我们来一个

完整复杂一点的例子:

代码如下:
//CSS 内容
$css_text = '';
$css_text .= 'body{width:285px;margin:auto;margin-top:50px;}';
$css_text .= '#my_table{border:1px solid #ececec;}';
$css_text .= '#my_table th{border:1px solid #ececec;padding:5px;text-decoration:underline;}';
$css_text .= '#my_table td{border:1px solid #ececec;padding:5px;}';
$css_text .= '#my_table td:first-child{text-align:right;color:#333333;font-weight:bold;color:#999999;}';

//创建新的 style 标签和 CSS 内容
$style = $dom->createElement('style',$css_text);

//创建新的属性 'type'
$domAttribute = $dom->createAttribute('type');

//为属性 'type' 添加
$domAttribute->value = 'text/css';

//添加属性到 style 标签
$style->appendChild($domAttribute);

//添加该 style 标签到 DOM 文件
$dom->appendChild($style);

//添加 form
$form = $dom->createElement('form');
$dom->appendChild($form);
$formAttribute = $dom->createAttribute('method');
$formAttribute->value = 'post';
$form->appendChild($formAttribute);

//添加 table
$table = $dom->createElement('table');
$tableAttribute = $dom->createAttribute('id');
$tableAttribute->value = 'my_table';
$table->appendChild($tableAttribute);

//添加新的行(row)
$tr = $dom->createElement('tr');
$table->appendChild($tr);

//添加新的列(column)
$th = $dom->createElement('th','Generate HTML using PHP');
$tr->appendChild($th);
$thAttribute = $dom->createAttribute('colspan');
$thAttribute->value = '2';
$th->appendChild($thAttribute);

//添加新的行(row)
$tr = $dom->createElement('tr');
$table->appendChild($tr);

//添加新的列(column)
$td = $dom->createElement('td','First Name');
$tr->appendChild($td);

//添加新的列(column)
$td = $dom->createElement('td');
$tr->appendChild($td);

//添加 input 元素到列(column)中
$input = $dom->createElement('input');
$td->appendChild($input);
$tdAttribute = $dom->createAttribute('type');
$tdAttribute->value = 'text';
$input->appendChild($tdAttribute);
$tdAttribute = $dom->createAttribute('name');
$tdAttribute->value = 'f_name';
$input->appendChild($tdAttribute);

//添加新的行(row)
$tr = $dom->createElement('tr');
$table->appendChild($tr);

//添加新的列(column)
$td = $dom->createElement('td','Email');
$tr->appendChild($td);

//添加新的列(column)
$td = $dom->createElement('td');
$tr->appendChild($td);

//添加 input 元素到列(column)中
$input = $dom->createElement('input');
$td->appendChild($input);
$tdAttribute = $dom->createAttribute('type');
$tdAttribute->value = 'text';
$input->appendChild($tdAttribute);
$tdAttribute = $dom->createAttribute('name');
$tdAttribute->value = 'e-mail';
$input->appendChild($tdAttribute);

//添加新的行(row)
$tr = $dom->createElement('tr');
$table->appendChild($tr);

//添加新的列(column)
$td = $dom->createElement('td','Gender');
$tr->appendChild($td);

//添加新的列(column)
$td = $dom->createElement('td');
$tr->appendChild($td);

//添加 input 元素到列(column)中
$select = $dom->createElement('select');
$td->appendChild($select);
$tdAttribute = $dom->createAttribute('name');
$tdAttribute->value = 'gender';
$select->appendChild($tdAttribute);

//为 Select 下拉框添加选项
$opt = $dom->createElement('option','Male');
$domAttribute = $dom->createAttribute('value');
$domAttribute->value = 'male';
$opt->appendChild($domAttribute);
$select->appendChild($opt);

$opt = $dom->createElement('option','Female');
$domAttribute = $dom->createAttribute('value');
$domAttribute->value = 'female';
$opt->appendChild($domAttribute);
$select->appendChild($opt);

//添加新的行(row)
$tr = $dom->createElement('tr');
$table->appendChild($tr);

//添加新的列(column)
$td = $dom->createElement('td','Interest');
$tr->appendChild($td);

//添加新的列(column)
$td = $dom->createElement('td');
$tr->appendChild($td);

//添加 input 元素到列(column)中
$radio = $dom->createElement('input');
$td->appendChild($radio);
$radAttribute = $dom->createAttribute('type');
$radAttribute->value = 'radio';
$radio->appendChild($radAttribute);
$radAttribute = $dom->createAttribute('name');
$radAttribute->value = 'interest';
$radio->appendChild($radAttribute);
$radAttribute = $dom->createAttribute('id');
$radAttribute->value = 'PHP';
$radio->appendChild($radAttribute);

$label = $dom->createElement('label','PHP');
$labelAttribute = $dom->createAttribute('for');
$labelAttribute->value = 'PHP';
$label->appendChild($labelAttribute);
$td->appendChild($label);

$radio = $dom->createElement('input');
$td->appendChild($radio);
$radAttribute = $dom->createAttribute('type');
$radAttribute->value = 'radio';
$radio->appendChild($radAttribute);
$radAttribute = $dom->createAttribute('name');
$radAttribute->value = 'interest';
$radio->appendChild($radAttribute);
$radAttribute = $dom->createAttribute('id');
$radAttribute->value = 'jquery';
$radio->appendChild($radAttribute);

$label = $dom->createElement('label','jQuery');
$labelAttribute = $dom->createAttribute('for');
$labelAttribute->value = 'jquery';
$label->appendChild($labelAttribute);
$td->appendChild($label);

//添加新的行(row)
$tr = $dom->createElement('tr');
$table->appendChild($tr);

//添加新的列(column)
$td = $dom->createElement('td');
$tr->appendChild($td);
$tdAttribute = $dom->createAttribute('colspan');
$tdAttribute->value = '2';
$td->appendChild($tdAttribute);

//添加 input 元素到列(column)中
$input = $dom->createElement('input');
$td->appendChild($input);
$tdAttribute = $dom->createAttribute('type');
$tdAttribute->value = 'submit';
$input->appendChild($tdAttribute);
$tdAttribute = $dom->createAttribute('value');
$tdAttribute->value = 'Sign-Up';
$input->appendChild($tdAttribute);

//添加 table 到 form 中
$form->appendChild($table);

echo $dom->saveHTML();

原文链接:https://www.f2er.com/php/24333.html

猜你在找的PHP相关文章