Data Type Php

$array = array('a' => 'R', 'b' => 2, c => '2'); 
print "

Using for:

\n

"; 
$limit = count($array); 
for($i = 0; $i < $limit; $i++) 
    if( isset($array[$i]) ) 
        printf("· %s,", $array[$i]); 
?>