Reflection Php




    $testing; // declare without assigning
    print gettype( $testing ); 
    print "";
    $testing = 5;
    print gettype( $testing ); 
    print "";
    $testing = "five";
    print gettype( $testing ); 
    print "";
    $testing = 5.0;
    print gettype( $testing ); 
    print "";
    $testing = true;
    print gettype( $testing ); 
    print "";
?>