Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
titleExamples
collapsetrue
$username = param::optional('user', null, param::ALPHANUM);
if (!is_null($username)) {
  // Do something with the username.
}

...