Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 4, 2020 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/2bd0ac1a27e9d7a6f0d065e78e46b40b to your computer and use it in GitHub Desktop.
Save parzibyte/2bd0ac1a27e9d7a6f0d065e78e46b40b to your computer and use it in GitHub Desktop.
<?php
function hola(){
return "Hola mundo";
}
function adios(){
return null;
}
$saludo = adios() ?? hola();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment