3v4l.org

run code in 300+ PHP versions simultaneously
<?php $_POST['action'] = 'value'; // Example usage for: Null Coalesce Operator $action = $_POST['action'] ?? 'default'; // The above is identical to this if/else statement if (isset($_POST['action'])) { $action = $_POST['action']; } else { $action = 'default'; } var_dump($action); $_POST['action'] = null; // Example usage for: Null Coalesce Operator $action = $_POST['action'] ?? 'default'; // The above is identical to this if/else statement if (isset($_POST['action'])) { $action = $_POST['action']; } else { $action = 'default'; } var_dump($action);

preferences:
53.59 ms | 402 KiB | 5 Q