php單箭頭和雙箭頭區別

2020-07-16 10:06:45

php單箭頭和雙箭頭區別:

參照一個類的屬性和方法就使用->符號。

下面是一個例子小程式:

<?php
//定義類Cart
class Cart {
    var $items;  // 購物車中的物品
    // 將 $num 個 $artnr 物品加入購物車
    function add_item($artnr, $num) {
        $this->items[$artnr] += $num;
    }
    // 將 $num 個 $artnr 物品從購物車中取出
    function remove_item($artnr, $num) {
        if ($this->items[$artnr] > $num) {
            $this->items[$artnr] -= $num;
            return true;
        } elseif ($this->items[$artnr] == $num) {
            unset($this->items[$artnr]);
            return true;
        } else {
            return false;
        }
    }
}
//範例繼承定義類Named_Cart
class Named_Cart extends Cart {
    var $owner;
    function set_owner ($name) {
        $this->owner = $name;
    }
}
//使用類的程式碼
$ncart = new Named_Cart;    // 新建一個有名字的購物車
$ncart->set_owner("kris");  // 給該購物車命名
print $ncart->owner;        // 輸出該購物車主人的名字
$ncart->add_item("10", 1);  // (從購物車類中繼承來的功能)
?>

「->」這個箭頭也可以是呼叫類中的函數

class a { function b() { echo 'a'; } } $a=new a; $a->b(); 輸出:a

=>這樣的箭頭,定義陣列用:

$array1 = array('a' = >5, 'b' = >6);
while ($arrayitem = each($array1)) {
    extract($arrayitem);
    echo('<br />'.$key.'='.$value);
}
輸出:a = 5 b = 6

總結:php單箭頭「->」用來參照一個類的屬性和方法或呼叫類中的函數。雙箭頭「=>」用來定義陣列。

推薦:php伺服器

以上就是php單箭頭和雙箭頭區別的詳細內容,更多請關注TW511.COM其它相關文章!