Skip to content

Instantly share code, notes, and snippets.

@corocoto
Last active September 11, 2018 17:02
Show Gist options
  • Save corocoto/a5adea8d68e6782edf710e5f06ec695a to your computer and use it in GitHub Desktop.
Save corocoto/a5adea8d68e6782edf710e5f06ec695a to your computer and use it in GitHub Desktop.
условный (тернарный) оператор в php
$x = -17;
//если перменная $x < 0, тогда меняем значение, иначе оставлеям все как есть
$x = $x < 0 ? -$x : $x;
echo $x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment