Question: Which will you select for the following type identifier function’s output?
<?php
$item=43;
Printf(“The variable \$item is of type array: %d <br/>”, is_array($item));
Printf(“The variable \$item is of type integar: %d <br/>”, is_ integar ($item));
Printf(“The variable \$item is of type numeric: %d <br/>”, is_ numeric ($item));
?>
AThe variable $item is of type array:0
The variable $item is of type integer:1
The variable $item is of type numeric:1
BThe variable $item is of type array:0
The variable $item is of type integer:1
The variable $item is of type numeric:0
CThe variable $item is of type array:0
The variable $item is of type integer:0
The variable $item is of type numeric:1
DThe variable $item is of type array:0
The variable $item is of type integer:0
The variable $item is of type numeric:0
Note: Not available