Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/4f030984c1be54d2fba98be95c8ff751 to your computer and use it in GitHub Desktop.
Save takahashi-h5/4f030984c1be54d2fba98be95c8ff751 to your computer and use it in GitHub Desktop.
<?php
declare(strict_types=1);
class V1Controller extends ControllerBase
{
public function editAction($aaa, $bbb)
{
$lang = $this->request->getQuery('lang'); // getQueryでキー指定してクエリパラメータを取得する
echo $aaa , ':' , $bbb , ':', $lang;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment