PHP コンポーネント プログラミング スキル_PHP チュートリアル

WBOY
リリース: 2016-07-21 15:46:05
オリジナル
798 人が閲覧しました

しかし、その UI の利便性はやや不十分です。PHP に限らず、どの Web プログラミング言語でも、UI を設計する際に同様の問題が発生します。その結果、技術的な内容のない HTML コードが大量に繰り返されます。 , しかし、非常に時間と労力がかかります。そこで、以前にやったPHPプロジェクトのUI部分を要約して、小さなコンポーネント(Delphiのコンポーネントのように)にカプセル化し、インターフェース上で統一したスタイルで提示して使えるようにしたいと考えています。将来的には、このノット コンポーネントに対して複数の CSS ファイルを作成して、「スキニング」機能を提供します。

すべてのコンポーネントは AbatractComponent クラスを継承し、その toString() メソッドと render() メソッドを実装します。 AbatractComponent には 3 つの主要なサブクラスがあります。1 つはコンテナ クラス Continer で、これから PanelPopPanelGroupPanel およびその他のクラスが派生します。2 つ目はコントロール クラス Control で、これらはすべて利用可能です。 ButtonLinkBut​​ton などのビジュアル コントロール クラスの親クラスであり、3 番目はリスト クラス List で、リストと名前と値のペアを持つ UI を実装します。

继承图

コードのAbstractComponent部分:

コードをコピー コードは次のとおりです:

/**
* コンポーネント ライブラリ
*
* @author Chris Mao
* @package コンポーネント
* @description すべてのコンポーネントはクラス
* から拡張され、toString の両方のメソッドをオーバーライドする必要があります。
* @copyright Copyright (c) 2009 JueRui Soft Studio
*
**/
class AbstractComponent {

/*
* @var _style コンポーネントのスタイルの配列
*
* @access protected
*
*/
protected $_style = array ();
/*
* @var _attributes コンポーネント属性の文字列
*
* @access protected
*
*/
protected $_attributes = array();

/**
* コンストラクター関数
*
* @access public
*
*/
public function __construct($options = null, $style = null) {
if (!is_null($options) && (gettype($options) != "array")) {
throw new Exception("オプションは配列である必要があります!!");
}
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);
}
}

/**
* コンポーネントの属性を設定します
*
* @access protected
*
* @param $name 属性名
* @param $value 属性値、オプション
*
* @return AbstractComponent
*/
保護関数 setAttr($name, $value) {
if (array_key_exists($name, $this->_attributes)) {
unset($this-> ;_attributes[$name]);
}
$this->_attributes[$name] = $value;
$this を返す;
}

/**
* コンポーネント属性の値を取得します
*
* @access protected
*
* @param $name 属性名
*
* @return string
*/
protected function getAttr($name) {
return array_key_exists($name, $this->_attributes) ? $this->_attributes[$name] : null;
}

/**
* コンポーネントのスタイルを設定します
*
* @access protected
*
* @param $name スタイル名
* @param $value スタイル値、オプション
*
* @return AbstractComponent
*/
保護関数 setStyle($name, $value) {
if (array_key_exists($name, $this->_style)) {
unset($this->_style) [$name]);
}
$this->_style[$name] = $value;
$this を返す;
}

/**
* コンポーネントのスタイルの値を取得します
*
* @access protected
*
* @param $name 属性名
*
* @return string
*/
protected function getStyle($name) {
return array_key_exists($name, $this->_style) ? $this->_style[$name] : null;
}

/**
* コンポーネントのすべての属性を name = "value" のような文字列に変換します
*
* @access protected
*
* @return string
*/
保護関数attributeToString() {
//$s = array_reduce(;
$s = "";
foreach($this->_attributes as $key => $value) {
$s .= " $key="$value" ";
}
return $s}

/**
* コンポーネントのスタイルを 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;
}

/**
* コンポーネント属性を設定または取得します
*
* @access public
*
* @param $name 属性名
* @param $value 属性値、オプション
*
* @return string ||抽象コンポーネント
*/
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); this->setAttr($name, $value);
}
}

/**
* コンポーネントのスタイルを設定または取得します
*
* @access public
*
* @param $name スタイル名
* @param $value スタイル値、オプション
*
* @return string ||抽象コンポーネント
*/
$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); name, $value);
}
}

/**
* HTML 文字列を返します
*
* @access public
*
* @return string
**/
public function toString() {
thorw New AbstractException("サブクラスはこのメソッドをオーバーライドする必要があります!!"); *
* コンポーネントをレンダリングします
*
* @access public
*
* @return void
**/
public function render() {
echo $this->toString();
}
}

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/320251.html技術記事ただし、UI の利便性がやや不十分です。UI を設計する際、ホスト言語と HTML が混在し、繰り返しが多くなります。
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!