if ( isset($_GET['action']) ) {
$actionName = $_GET['action'];
} else {
$actionName = 'index';
}
$actionName = $_GET['action'] ?? 'index';
(condition) ? /* value to return if condition is true */
: /* value to return if condition is false */ ;
$a = 1;
echo $a === 1 ? 'Переменная $a равна 1' : 'Переменная $a не равна 1';