PHP 组件化编程技巧


Posted in PHP onJune 06, 2009

但其在UI方便却有些力不从心,不仅是PHP,任何一种Web编程语言在设计UI都有类似的问题,宿主语言与HTML混和在一个文件中,大量重复的 HTML代码,毫无任何技术含量,但又非常的费时费力。于是我就希望能够对之前做过的PHP项目UI部分进行总结和归纳,将其封装为一个个小的组件(就像 Delphi中的组件一样),在界面上呈现为统一的风格,日后可以再针对这结组件编写多个CSS文件,提供“换肤”功能。

所有的组件都继承自AbatractComponent这个类,并实现其中的toString()render()方法。AbatractComponent又有三个主要的子类,一个是容器类Continer,其又派生出PanelPopPanelGroupPanel等类,第二个是控件类Control,是所有可视控件类的父类,如ButtonLinkButton等类,第三个则是列表类List,实现有列表,名-值对的UI。

PHP 组件化编程技巧

AbstractComponent部分代码:

<?php 
/** 
* Component Library 
* 
* @author Chris Mao 
* @package Component 
* @description All components must be extened from the class 
* and override the both methods of toString. 
* @copyright Copyright (c) 2009 JueRui Soft Studio 
* 
**/ 
class AbstractComponent { /* 
* @var _style the component style's array 
* 
* @access protected 
* 
*/ 
protected $_style = array(); 
/* 
* @var _attributes the component attribute's string 
* 
* @access protected 
* 
*/ 
protected $_attributes = array(); 
/** 
* constructor function 
* 
* @access public 
* 
*/ 
public function __construct($options = null, $style = null) { 
if (!is_null($options) && (gettype($options) != "array")) { 
throw new Exception("The options must be a array!!"); 
} 
if (!empty($options) && is_array($options)) { 
if (array_key_exists("style", $options)) { 
if (is_array($options["style"])) { 
$this->_style = array_merge($this->_style, $options["style"]); 
} 
unset($options["style"]); 
} 
$this->_attributes = array_merge($this->_attributes, $options); 
} 
if (!empty($style) && is_array($style)) { 
$this->_style = array_merge($this->_style, $style); 
} 
} 
/** 
* set the component attributes 
* 
* @access protected 
* 
* @param $name attribute name 
* @param $value attribute value, option 
* 
* @return AbstractComponent 
*/ 
protected function setAttr($name, $value) { 
if (array_key_exists($name, $this->_attributes)) { 
unset($this->_attributes[$name]); 
} 
$this->_attributes[$name] = $value; 
return $this; 
} 
/** 
* get the component attributes' value 
* 
* @access protected 
* 
* @param $name attribute name 
* 
* @return string 
*/ 
protected function getAttr($name) { 
return array_key_exists($name, $this->_attributes) ? $this->_attributes[$name] : null; 
} 
/** 
* set the component style 
* 
* @access protected 
* 
* @param $name style name 
* @param $value style value, option 
* 
* @return AbstractComponent 
*/ 
protected function setStyle($name, $value) { 
if (array_key_exists($name, $this->_style)) { 
unset($this->_style[$name]); 
} 
$this->_style[$name] = $value; 
return $this; 
} 
/** 
* get the component style's value 
* 
* @access protected 
* 
* @param $name attribute name 
* 
* @return string 
*/ 
protected function getStyle($name) { 
return array_key_exists($name, $this->_style) ? $this->_style[$name] : null; 
} 
/** 
* convert the component all attributes to string like name = "value" 
* 
* @access protected 
* 
* @return string 
*/ 
protected function attributeToString() { 
//$s = array_reduce(; 
$s = ""; 
foreach($this->_attributes as $key => $value) { 
$s .= " $key=\"$value\" "; 
} 
return $s; 
} 
/** 
* convert the component style to string like style = "....." 
* 
* @access protected 
* 
* @return string 
*/ 
protected function styleToString() { 
if (empty($this->_style)) return ""; 
$s = ""; 
foreach($this->_style as $key => $value) { 
$s .= " $key: $value; "; 
} 
$s = " style=\"$s\" "; 
return $s; 
} 
/** 
* set or get the component attributes 
* 
* @access public 
* 
* @param $name attribute name 
* @param $value attribute value, option 
* 
* @return string || AbstractComponent 
*/ 
public function attr() { 
$name = func_get_arg(0); 
if (func_num_args() == 1) { 
return $this->getAttr($name); 
} 
else if (func_num_args() == 2) { 
$value = func_get_arg(1); 
return $this->setAttr($name, $value); 
} 
} 
/** 
* set or get the component style 
* 
* @access public 
* 
* @param $name style name 
* @param $value style value, option 
* 
* @return string || AbstractComponent 
*/ 
public function style() { 
$name = func_get_arg(0); 
if (func_num_args() == 1) { 
return $this->getStyle($name); 
} 
else if (func_num_args() == 2) { 
$value = func_get_arg(1); 
return $this->setStyle($name, $value); 
} 
} 
/** 
* return the HTML string 
* 
* @access public 
* 
* @return string 
**/ 
public function toString() { 
thorw New AbstractException("subclass must be override this method!!"); 
} 
/** 
* render the component 
* 
* @access public 
* 
* @return void 
**/ 
public function render() { 
echo $this->toString(); 
} 
}
PHP 相关文章推荐
ADODB类使用
Nov 25 PHP
PHP时间戳使用实例代码
Jun 07 PHP
PHP 一个比较完善的简单文件上传
Mar 25 PHP
PHP is_dir() 判断给定文件名是否是一个目录
May 10 PHP
PHP使用Alexa API获取网站的Alexa排名例子
Jun 12 PHP
php简单实现多字节字符串翻转的方法
Mar 31 PHP
PHP面试常用算法(推荐)
Jul 22 PHP
PHP微信API接口类
Aug 22 PHP
Kindeditor编辑器添加图片上传水印功能(php代码)
Aug 03 PHP
php使用array_chunk函数将一个数组分割成多个数组
Dec 05 PHP
实例讲解php将字符串输出到HTML
Jan 27 PHP
PHP fopen中文文件名乱码问题解决方案
Oct 28 PHP
PHP加速 eAccelerator配置和使用指南
Jun 05 #PHP
php 更新数据库中断的解决方法
Jun 05 #PHP
php split汉字
Jun 05 #PHP
phpinfo 系统查看参数函数代码
Jun 05 #PHP
PHP 字符串 小常识
Jun 05 #PHP
PHP 批量删除 sql语句
Jun 05 #PHP
PHP 文件扩展名 获取函数
Jun 03 #PHP
You might like
codeigniter中view通过循环显示数组数据的方法
2015/03/20 PHP
PHP代码实现表单数据验证类
2015/07/28 PHP
网页的分页下标生成代码(PHP后端方法)
2016/02/03 PHP
实例讲解PHP设计模式编程中的简单工厂模式
2016/02/29 PHP
JavaScript 类的定义和引用 JavaScript高级培训 自定义对象
2010/04/27 Javascript
使用phantomjs进行网页抓取的实现代码
2014/09/29 Javascript
轻松创建nodejs服务器(3):代码模块化
2014/12/18 NodeJs
jQuery插件Tooltipster实现漂亮的工具提示
2015/04/12 Javascript
JS实现随机乱撞彩色圆球特效的方法
2015/05/05 Javascript
js电话号码验证方法
2015/09/28 Javascript
JS 数字转换为大写金额的简单实例
2016/08/04 Javascript
关于javascript中限定时间内防止按钮重复点击的思路详解
2016/08/16 Javascript
angularJS Provider、factory、service详解及实例代码
2016/09/21 Javascript
用iframe实现不刷新整个页面上传图片的实例
2016/11/18 Javascript
基于jQuery实现弹幕APP
2017/02/10 Javascript
Angular2+国际化方案(ngx-translate)的示例代码
2017/08/23 Javascript
vue router的基本使用和配置教程
2018/11/05 Javascript
JS面向对象之单选框实现
2020/01/17 Javascript
python利用hook技术破解https的实例代码
2013/03/25 Python
Python学习笔记_数据排序方法
2014/05/22 Python
Python Tkinter模块实现时钟功能应用示例
2018/07/23 Python
三步实现Django Paginator分页的方法
2019/06/11 Python
基于树莓派的语音对话机器人
2019/06/17 Python
django 前端页面如何实现显示前N条数据
2020/03/16 Python
keras之权重初始化方式
2020/05/21 Python
Python常驻任务实现接收外界参数代码解析
2020/07/21 Python
matplotlib设置颜色、标记、线条,让你的图像更加丰富(推荐)
2020/09/25 Python
详解Sticky Footer 绝对底部的两种套路
2017/11/03 HTML / CSS
英国珠宝钟表和家居礼品精品店:David Shuttle
2018/02/24 全球购物
颇特女士香港官网:NET-A-PORTER香港
2021/03/08 全球购物
查询优化的一般准则有哪些
2015/03/08 面试题
民族团结先进集体事迹材料
2014/05/22 职场文书
征求意见函
2015/06/05 职场文书
追悼会答谢词范文
2015/09/29 职场文书
2020年元旦祝福语录,总有适合你的
2019/12/31 职场文书
MySQL基于索引的压力测试的实现
2021/11/07 MySQL