Which operator is used to access static values in a class?
Which format parameter can be used to identify the time zone?
How many predefined exceptions does SPL provide access to?
Which keyword is used to break out of a loop?
What does GTK stand for?
If $num = 1 , then what will be returned when($num == 1 ) ? "hello" : "world" is executed?
What will be the output of the following PHP code?
<?php
if (!print "hi")
if (print "hello")
print "hi";
?>
Which one of the following is the right way to invoke a method?
Which one of the following can be used to instantiate an object in PHP assuming class name to be Foo?
What is the output of the following PHP code?
<?php
$text = "this is\tsome text that\nwe might like to parse.";
print_r(split("[\n\t]",$text));
?>