Home  >  Article  >  PHP Framework  >  Do Yii templates support native syntax?

Do Yii templates support native syntax?

Guanhui
GuanhuiOriginal
2020-06-08 16:39:562084browse

Do Yii templates support native syntax?

#Do Yii templates support native syntax?

Yii templates support native syntax. Because the Yii framework does not use a template engine, you can use native PHP syntax in Yii templates. Yii templates do not use Smarty to compile custom tags into PHP, but an encapsulation of PHP's original syntax.

Yii template label

label label

<?php echo $form->labelEx($model,&#39;name&#39;); ?>

After compilation:

<label for="Project_name" class="required">项目名称 <span class="required">*</span></label>

Text Tag

<?php echo $form->textField($model,&#39;name&#39;,array(&#39;size&#39;=>60,&#39;maxlength&#39;=>128)); ?>

After compilation:

<input size="60" maxlength="128" name="Project[name]" id="Project_name" type="text">

error tag

<?php echo $form->error($model,&#39;name&#39;); ?>

After compilation:

<div class="errorMessage">{变量}</div>

textarea tag

<?php echo $form->textArea($model,&#39;description&#39;,array(&#39;rows&#39;=>6, &#39;cols&#39;=>50)); ?>

After compilation:

<textarea rows="6" cols="50" name="Project[description]" id="Project_description" class="error"></textarea>

hidden tag

<?php echo $form->hiddenField($model,&#39;create_time&#39;,array(&#39;value&#39;=>time())); ?>

After compilation:

<input value="1376475100" name="Project[create_time]" id="Project_create_time" type="hidden">

password tag

<?php echo $form->passwordField($model,&#39;password&#39;); ?>

After compilation:

<input name="Project[password]" id="Project_password" type="password">

url tag

<?php echo $form->urlField($model,&#39;url&#39;); ?>

After compilation:

<input name="Project[url]" id="Project_url" type="url">

radio tag

<?php echo $form->radioButtonList($model, &#39;update_time&#39;, array(&#39;1&#39;=>&#39;分页&#39;,&#39;0&#39;=>&#39;不分页&#39;)); ?>

After compilation:

<input id="ytProject_update_time" type="hidden" value="" name="Project[update_time]">
<span id="Project_update_time"><input id="Project_update_time_0" value="1" type="radio" name="Project[update_time]"> <label for="Project_update_time_0">分页</label><br>
<input id="Project_update_time_1" value="0" type="radio" name="Project[update_time]"> 
<label for="Project_update_time_1">不分页</label></span>

file tag

<?php echo $form->fileField($model, &#39;update_time&#39;); ?>

After compilation:

<input id="ytProject_update_time" type="hidden" value="" name="Project[update_time]">
<input name="Project[update_time]" id="Project_update_time" type="file">

button tag

<?php echo CHtml::submitButton($model->isNewRecord ? &#39;创建&#39; : &#39;保存&#39;); ?>

After compilation:

<input type="submit" name="yt0" value="创建">

checkBox tag

<?php echo $form->checkBox($model, &#39;update_time&#39;,array(&#39;checked&#39;=>&#39;checked&#39;)); ?>

After compilation:

<input id="ytProject_update_time" type="hidden" value="0" name="Project[update_time]">
<input checked="checked" name="Project[update_time]" id="Project_update_time" value="1" type="checkbox">

select tag

<?php echo $form->dropDownList($model, &#39;update_time&#39;, array(&#39;1&#39;=>&#39;分页&#39;,&#39;0&#39;=>&#39;不分页&#39;)); ?>

After compilation :

<select name="Project[update_time]" id="Project_update_time">
<option value="1">分页</option>
<option value="0">不分页</option>
</select>

select tag

<?php echo $form->listBox($model, &#39;update_time&#39;, array(&#39;1&#39;=>&#39;分页&#39;,&#39;0&#39;=>&#39;不分页&#39;)); ?>

After compilation:

<select size="4" name="Project[update_time]" id="Project_update_time">
<option value="1">分页</option>
<option value="0">不分页</option>
</select>

checkbox tag

<?php echo $form->checkBoxList($model, &#39;update_time&#39;, array(&#39;1&#39;=>&#39;分页&#39;,&#39;0&#39;=>&#39;不分页&#39;)); ?>

After compilation:

<input id="ytProject_update_time" type="hidden" value="" name="Project[update_time]"><span id="Project_update_time"><input id="Project_update_time_0" value="1" type="checkbox" name="Project[update_time][]"> <label for="Project_update_time_0">分页</label><br>
<input id="Project_update_time_1" value="0" type="checkbox" name="Project[update_time][]"> <label for="Project_update_time_1">不分页</label></span>

date tag

 <?php echo $form->dateField($model, &#39;update_time&#39;); ?>

After compilation:

<input name="Project[update_time]" id="Project_update_time" type="date">

number tag

<?php echo $form->numberField($model, &#39;number&#39;); ?>

After compilation:

<input name="Project[number]" id="Project_number" type="number">

email tag

<?php echo $form->emailField($model, &#39;email&#39;); ?>

After compilation:

<input name="Project[email]" id="Project_email" type="email">

label label

 <?php echo $form->label($model, &#39;update_time&#39;); ?>

After compilation:

<label for="Project_update_time">更新时间</label>

Recommended tutorial: "Yii Tutorial"

The above is the detailed content of Do Yii templates support native syntax?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn