var_dump($x)定義數字變數x
正負均可
可以用三種格式規定整數:十進位制、十六進製制(字首是 0x)或八進位制(字首是 0)
php 邏輯
邏輯是 true 或 false。
$x=true;
$y=false;
邏輯常用於條件測試
php 字串運算子
算符 名稱 例子 結果
. 串接 $txt1 = 「hello」 $txt2 = $txt1 . " world!" 現在 $txt2 包含 「hello world!」
.= 串接賦值 $txt1 = 「hello」 $txt1 .= " world!" 現在 $txt1 包含 「hello world!」
<?php
$a = "hello";
$b = $a . " world!";
echo $b; // 輸出 hello world!
$x="hello";
$x .= " world!";
echo $x; // 輸出 hello world!
?>
加減乘除
<?php
$x=10;
$y=6;
echo ($x + $y); // 輸出 16
echo ($x - $y); // 輸出 4
echo ($x * $y); // 輸出 60
echo ($x / $y); // 輸出 1.6666666666667
echo ($x % $y); // 輸出 4
?>
php遞增遞減
<?php
$x=10;
echo ++$x; // 輸出 11
$y=10;
echo $y++; // 輸出 10
$z=5;
echo --$z; // 輸出 4
$i=5;
echo $i--; // 輸出 5
?>
登入的基本邏輯
登入的基本邏輯 1,驗證賬號密碼的正確性 與資料庫相匹配的 string sql select count from 表名 where pwd and ac 單值結果 0 1 判斷是否正確,有一條結果返回。using system.data.sqlclient public static strin...
C 基本邏輯語法
if else 結構包含乙個條件和兩個分支 條件是 bool 型別表示式,寫在 if 後面的圓括號裡 分支寫在 2 個 裡。當條件為 true 時,執行 if 後面的分支,當條件為 false 時,執行 else 後面的分支。語法結構 if 判斷條件 條件,bool型別 else 小栗子 判斷是否為...
php 邏輯運算
foo 根本沒機會被呼叫,被運算子 短路 了 a false foo b true foo c false and foo d true or foo 比 or 的優先順序高 表示式 false true 的結果被賦給 e 等同於 e false true e false true 常量 false...