Outputs arg.
Parameters :
int print ( string $arg )
"foo");print "this is {$bar['value']} !"; // this is foo !// Using single quotes will print the variable name, not the valueprint 'foo is $foo'; // foo is $foo// If you are not using any other characters, you can just print variablesprint $foo; // foobarprint <<