<?php
/* /index.php?r=my/index&id=test // строка запроса */
namespace app\controllers;
use yii\web\Controller;
class MyController extends Controller {
public function actionIndex($id=null) {
$hi = 'Hello, worlld!'; // передаем эту переменную в представление
$names = ['Ivanov', 'Petrov', 'Sidorov']; // передаем этот массив в представление
if(!$id) {$id = 'test';}
return $this->render('index', compact('hi', 'names', 'id'));
}
}
?>