Skip to content

Instantly share code, notes, and snippets.

@lfalmeida
Last active December 19, 2017 16:37
Show Gist options
  • Save lfalmeida/0f658ac4c959373990a8dacebffbfeea to your computer and use it in GitHub Desktop.
Save lfalmeida/0f658ac4c959373990a8dacebffbfeea to your computer and use it in GitHub Desktop.
<?php
$var = "yes";
var_dump(filter_var($var, FILTER_VALIDATE_BOOLEAN));
# A saída do código acima seria:
# bool(true)
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment