Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php $a = "Hello"; echo "a is " . is_countable($a) . "<br>"; $b = array("red", "green", "blue"); echo "b is " . is_countable($b) . "<br>"; $c = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43"); echo "c is " . is_countable($c) . "<br>"; $d = [1, 2, 3]; echo "d is " . is_countable($d) . "<br>"; ?> </body> </html>