Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
if statement
switch statement
for loop
while loop
function_name(arguments)
function_name(arguments;)
function_name(arguments,)
function_name(arguments);
include "filename";
require "filename";
include_once "filename";
all of the above
exit
continue
break
return
define('Constant_name', 'value');
constant Constant_name = value;
Constant_name = value;
object_name.method_name();
call object_name.method_name();
object_name(call method_name());
object_name->method_name();
setcookie('cookie_name', 'cookie_value');
cookie('cookie_name', 'cookie_value');
create_cookie('cookie_name', 'cookie_value');
is_null($variable)
$variable == null
$variable === null
object_name->property_name;
object_name.property_name;
object_name[property_name];
object_name->(property_name);
$variable_name;
var variable_name;
$variable_name =;
variable_name;