
<?php
$x=3;
define(“We”,”hello world”,true);
echo "hello world";echo '<br>';echo " hello world<br>";
echo we;var_dump("hello world");
/*function mytest($a,$b)
{
echo $a+$b;
}
mytest(4,7);*/
echo<<<Eof
“1129”
“$x”
echo “$x”;
Eof;
$p=true;
var_dump($p);
var_dump(8e-30);
$test=0;
var_dump($test); echo"ok";var_dump("ok");
$my="my best";
$next="wish";
echo $my.$next;echo "<br>";
echo $my." ".$next;
?>




近期评论