Posted in PHP onJuly 18, 2016
本文实例讲述了yii2.0实现创建简单widgets的方法。分享给大家供大家参考,具体如下:
namespace yii\widgets; use yii\base\Widget; use yii\helpers\Html; class HelloWidget extends Widget { public $message; public function init() { parent::init(); if ($this->message === null) { $this->message = 'Hello World'; } } public function run() { return Html::encode($this->message); } }
调用方法
<?php use app\components\HelloWidget; ?> <?= HelloWidget::widget(['message' => 'Good morning']) ?>
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。
yii2.0实现创建简单widgets示例
- Author -
懒人声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@