Last active
September 11, 2018 17:02
-
-
Save corocoto/a5adea8d68e6782edf710e5f06ec695a to your computer and use it in GitHub Desktop.
условный (тернарный) оператор в php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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