is_array

Is_array function returns Boolean value ( true of false ) based on the input data. It returns true if variable is an array. Here is an example
$a= array("Three", "two", "Four", "five","ten"); 
$b="Hello Welcome to plus2net ";
if(is_array($a)){ // Change this variable to $b
echo " This is an array ";
}else{
echo " This is not an array ";
}
The above code will return This is an array if $a is checked using if condition.

Example

<?Php
$str="Learn web programming at plus2net.com";
echo is_array($str) ? 'Yes, Array' : 'not an Array';
?>
Output is
not an Array
By using split function we can break a sting and create an array. Here is the modified code.
<?Php
$str=split(" ","Learn web programming at plus2net.com");
echo is_array($str) ? 'Yes, Array' : 'not an Array';
?>
Output is
Yes, Array

Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer