#動的コンテンツを追加する最も簡単な方法は、ビュー テンプレート ファイルに PHP ステートメントを埋め込むことです。 タグの間のコードはすべて実行されます。
#<h3><?php echo date("D M j G:i:s T Y"); ?></h3>
ビュー ファイル内: $theTime=date("D M j G:is T Y");
$this->render('helloWorld',array('time'=>$theTime));
ローカル変数ではなく、コントローラー内のクラスのパブリック プロパティを定義します。次に、ビュー内の $this を通じてこのクラスのプロパティにアクセスします。 <h3><?php echo $time; ?></h3>
class MessageController extends Controller { public $time; public function actionHelloworld() { $this->time = date("D M j G:is T Y"); $this->render('helloworld', array('time' => $theTime)); }
以上がYii でテンプレートに変数を渡す方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。