Join Now
Home Aptitude Reasoning DI VA GK CA CA Hindi Quiz Placements
function function_name()
function_name()
function function_name(parameters)
function_name(arguments)
function_name(arguments;)
function_name(arguments,)
function_name(arguments);
include "filename";
require "filename";
include_once "filename";
all of the above
for loop
while loop
foreach loop
do-while loop
define('Constant_name', 'value');
constant Constant_name = value;
Constant_name = value;
is_null($variable)
$variable == null
$variable === null
object_name.method_name();
call object_name.method_name();
object_name(call method_name());
object_name->method_name();
exit
continue
break
return
Class_name = new Class();
new Object = Class_name();
new Class_name();
Object = new Class_name;
namespace Namespace_name;
use Namespace_name;
define Namespace_name;