Last active
January 19, 2017 13:06
-
-
Save maurobringolf/1618dd105d8ee549a14d65a29cc55b34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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