fork download
  1. <?php
  2.  
  3. $config = [
  4. 'components' => [
  5. 'urlManager' => [
  6. 'enablePrettyUrl' => true,
  7. 'showScriptName' => false,
  8. 'rules' => [
  9. '<controller:\w+>/<action:\w+>' => '<controller>/<action>',
  10. ],
  11. ]
  12. ],
  13. ];
  14.  
  15. class SiteController extends Controller {
  16.  
  17. public function actionSay($message = 'Привет')
  18. {
  19. return $this->render('say', ['message' => $message]);
  20. }
  21.  
  22. }
  23.  
  24. //views/site
  25. <?php
  26. use yii\helpers\Html;
  27. ?>
  28. <?= Html::encode($message) ?>
  29.  
Runtime error #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected '<', expecting end of file in /home/G0FIpH/prog.php on line 25