PHP ???? ?? ??
PHP? ??? ?? ??? ?? ???? ?????.
?? ??? ????? ?????.
?? ??? PHP? ?? ??? ??? ??? ????.
??? ?? ??? ??,
?? ??? ???? ? ?? ?? ??? ??, ?? ?? ??? ???.
??: ??? ??? ??? a-z???. , A-Z ? 127~255(0x7f-0xff)? ASCII ?????.
$??? ? ?? ?? ?????
PHP ?? ?? ??
1. ??? ?? ?? $? ?????. ?? ?? $name, $age ?? ????.
2. ?? ?? $ ?? ? ?? ??? ??? ? ??? ??_ ?? ??? ?????. $1_1? ?? ??? ???????.
3. ??_? ???? ???? ???? ???? ???? ????. ?, ?? ???? a-z, A-Z, 0-9 ? underscore_? ??? ? ????.
4. PHP ?? ??? ????? ?????. ?? ?? $name? $Name? ?? ?? ? ?????.
<?php $var = 'Bob' ; $Var = 'Joe' ; echo "$var,$Var"; // 輸出 "Bob, Joe" //site = 'not yet' ; // 非法變量名;以數(shù)字開頭 $_4site = 'not yet' ; // 合法變量名;以下劃線開頭 $i站點(diǎn)is = 'mansikka' ; // 合法變量名;可以用中文 ?>
?? ??:
?? ??? ??? ??/??? ? ?? ???? ?????.
local ??? $GLOBALS[index]?? ??? ?????. index? ??? ??? ?? ????. ? ??? ?? ??? ?????? ?? ??? ?????? ? ?? ??? ? ????. <?php
$x=5;
$y=10;
function myTest(){
global $x,$y;
$y=$x+$y;
}
myTest();
echo $y;
?>
static ?? ??? ?? ?? ???? ????? ???? ??? ? ??? ???? ? ?? ???? ??????? ??? ??? ??? ??? ??? ????? ????? ?? ?? ?????. ??: ? ??? ??? ??? ?? ?????.
<?php function myTest(){ static $x=0; echo $x; $x++; } myTest(); myTest(); myTest(); ?>
???? ??
????? ?? ??? ?? ??? ?? ???? ?? ?????.
????? ?? ??? ??? ???? ??? ?????.
<?php $x=5; $y=10; function myTest(){ $GLOBALS['y']=$GLOBALS['x']+$GLOBALS['y']; } myTest(); echo $y; ?>