###基本
php 像jquery一样用$代表一个容器,变量储存于此
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
| <?php $x = 5; echo $x; echo "123",$x; $arrayName = array("a","b","c"); echo "123{arrayName[0]}"; print("<br>123"); print_r($arrayName); $y = 0.15; var_dump($y); define("TRIGGER","Exciting",true); echo Trigger; $txt1 = "abc"; $txt2 = "def"; echo $txt1.$txt2;
$arrayName = array('ma' =>"100", 'liu'=>"50"); echo $arrayName['ma']; foreach ($arrayName as $x => $x_value) { echo "key=".$x," value=".$x_value."<br>"; }
$gl = 35; function glk(){ $GLOBALS['glk'] = $GLOBALS['gl']; } glk(); echo $glk;
echo $_SERVER['PHP_SELF']
function text(){ echo __FUNCTION__; }
declare(encoding='UTF-8'); namespace project1; function pt(){ echo "123"; }
namespace project2; function pt(){ echo "234"; }
pt(); \project1\pt(); use project1 as p1; p1\pt();
class example{ var $xu; function gnum($par){ $this->xu = $par; } function pt(){ echo $this->xu; } } $test = new example; $test->gnum(5); $test->pt();
class example{ function __construct($par){ $this->x = $par; echo $this->x; } function __destruct(){ echo "abc"; } } $foo = new example(20);
class 2nd_example extends example{ } ?>
|
表单