Skip to content

Instantly share code, notes, and snippets.

@scofennell
Created November 10, 2017 23:52
Show Gist options
  • Save scofennell/bb2c3c074aa08e9c02ae9fadc20dd458 to your computer and use it in GitHub Desktop.
Save scofennell/bb2c3c074aa08e9c02ae9fadc20dd458 to your computer and use it in GitHub Desktop.
<?php
function my_booler( $var ) {
if( $var === 'true' ) { $var = true; }
if( $var === 'false' ) { $var = false; }
return $var;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment