Skip to content

Instantly share code, notes, and snippets.

@maurobringolf
Last active January 19, 2017 13:06
Show Gist options
  • Save maurobringolf/1618dd105d8ee549a14d65a29cc55b34 to your computer and use it in GitHub Desktop.
Save maurobringolf/1618dd105d8ee549a14d65a29cc55b34 to your computer and use it in GitHub Desktop.
<?php
is_numeric( $var ); //http://php.net/manual/de/function.is-numeric.php
is_array( $var ); //http://php.net/manual/de/function.is-array.php
is_object( $var ); //http://php.net/manual/de/function.is-object.php
is_string( $var ); //http://php.net/manual/de/function.is-string.php
isset( $data['key'] ); //http://php.net/manual/de/function.isset.php
in_array( $var, $arr ); //http://php.net/manual/de/function.is-array.php
strlen( $var ); //http://php.net/manual/de/function.strlen.php
count( $arr); //http://php.net/manual/de/function.count.php
empty( $var ); //http://php.net/manual/de/function.empty.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment