Skip to content

Instantly share code, notes, and snippets.

@alfianmalik
Created May 24, 2020 16:11
Show Gist options
  • Save alfianmalik/b8fbcb7f90091231ad597cae4c387eb6 to your computer and use it in GitHub Desktop.
Save alfianmalik/b8fbcb7f90091231ad597cae4c387eb6 to your computer and use it in GitHub Desktop.
<?php
$error = true;
$message = null;
if ($error) {
$message = 'You have encountered an error';
// Original variable type of null now cast to a string
}
echo $message; // 'You have encountered an error'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment