1. 程式人生 > >php 代碼中的箭頭“ ->”與“=>”是什麽意思?

php 代碼中的箭頭“ ->”與“=>”是什麽意思?

item 車主 ech 這樣的 意思 this 引用 代碼 ==

類是一個復雜數據類型,這個類型的數據主要有屬性、方法兩種東西。

屬性其實是一些變量,可以存放數據,存放的數據可以是整數、字符串,也可以是數組,甚至是類。

方法實際上是一些函數,用來完成某些功能。

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

下面是一個例子小程序:
<?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 代碼中的箭頭“ ->”與“=>”是什麽意思?