hy-farm/home/views/site/index.php
2026-05-07 20:10:54 +08:00

12 lines
488 B
PHP

<?php
use yii\helpers\Html;
use yii\helpers\Url;
$this->registerJsFile("comon/a.js");
?>
<div class="main">
<div class="container">
<?=Html::a("test",Yii::$app->urlManager->createUrl(['site/index']), ['alt' => 'brand', 'class' => 'img-responsive']);?>
<?=Html::a("tourl",Url::to(['site/index', 'id' => 42]), ['alt' => 'brand', 'class' => 'img-responsive']);?>
<?=Html::a("home",Url::home(), ['alt' => 'brand', 'class' => 'img-responsive']);?>
</div>
</div>