時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)
PHP 4.0中新添加了30個(gè)與組數(shù)有關(guān)的函數(shù),其中一些常見(jiàn)的函數(shù)可以判斷一個(gè)數(shù)組中是否包含某個(gè)元素,對(duì)一個(gè)數(shù)組中的元素進(jìn)行計(jì)數(shù),添加或刪除數(shù)組中的元素或者對(duì)數(shù)組中的元素進(jìn)行排序。
如果有一個(gè)很大的數(shù)組,而你需要找出其中是否包含一個(gè)特定的元素,就可以使用in_array()。下面的例子將顯示"Not found in this array",因?yàn)樵谝粋€(gè)名字為$namesArray的數(shù)組中查找Albert,而在$namesArray數(shù)組中不存在這樣一個(gè)元素。
$lookingFor = "Albert";
if (in_array($lookingFor, $namesArray)) {
echo "You've found it!";
} else {
echo "Not found in this array!";
}
?>
如果把$lookingFor的值改為Mary,就會(huì)得到"You've found it!"的信息,因?yàn)镸ary是$namesArray數(shù)組中的一個(gè)元素。
如果要對(duì)一個(gè)數(shù)組中的元素個(gè)數(shù)進(jìn)行計(jì)數(shù),只要簡(jiǎn)單地使用count()函數(shù)即可:
$count = count($namesArray); ?>
返回的$count的值為7。
可以在一個(gè)數(shù)組的開頭或結(jié)尾處添加元素,還可以使用array_merge()來(lái)建立一個(gè)包含二個(gè)或更多數(shù)組中元素的新數(shù)組,合并時(shí),元素的順序會(huì)按指定的順序排列,如果原來(lái)的數(shù)組是被排過(guò)序的,在合并后需要對(duì)它重新排序。
我們可以首先利用array_push()在數(shù)組的結(jié)尾處添加一個(gè)元素:
$fruitArray = array("apple", "orange", "banana", "kiwi", "pear");
/* 向數(shù)組中添加元素 */
array_push($fruitArray, "grape", "pineapple", "tomato");
/*顯示每個(gè)元素及其序號(hào)*/
while (list($key,$value) = each($fruitArray)) {
echo "$key : $value
";
}
?>
運(yùn)行上面的程序?qū)⒌玫较旅娴慕Y(jié)果:
0 : apple
1 : orange
2 : banana
3 : kiwi
4 : pear
5 : grape
6 : pineapple
7 : tomato
如果需要在數(shù)組的開頭添加元素,其代碼與上面的代碼差不多,唯一的不同之處是需要用array_unshift()代替array_push()。
?
/* 建立一個(gè)數(shù)組*/
$fruitArray = array("apple", "orange", "banana", "kiwi", "pear");
/* 向數(shù)組中添加元素*/
array_unshift($fruitArray, "grape", "pineapple", "tomato");
/* 顯示每個(gè)元素及其序號(hào)*/
while (list($key,$value) = each($fruitArray)) {
echo "$key : $value
";
}
?>
運(yùn)行上面的程序?qū)⒌玫较旅娴慕Y(jié)果:
0 : grape
1 : pineapple
2 : tomato
3 : apple
4 : orange
5 : banana
6 : kiwi
7 : pear
array_merge()函數(shù)可以把二個(gè)或更多的數(shù)組合并為一個(gè)數(shù)組。
$fruitArray = array("apple", "orange", "banana", "kiwi", "pear");
/*/建立第二個(gè)數(shù)組*/
$vegArray = array("carrot", "green beans", "asparagus", "artichoke", "corn");
/*把這二個(gè)數(shù)組合并為一個(gè)數(shù)組*/
$goodfoodArray = array_merge($fruitArray, $vegArray);
/* 顯示每個(gè)元素及其序號(hào)*/
while (list($key,$value) = each($goodfoodArray)) {
echo "$key : $value
";
}
?>
運(yùn)行上面的腳本將得到下面的結(jié)果:
0 : apple
1 : orange
2 : banana
3 : kiwi
4 : pear
5 : carrot
6 : green beans
7 : asparagus
8 : artichoke
9 : corn
現(xiàn)在我們已經(jīng)掌握了如何添加元素和合并數(shù)組,我們?cè)賮?lái)看看如何從一個(gè)數(shù)組中刪除元素。從一個(gè)數(shù)組的末尾刪除一個(gè)元素可以使用array_pop()函數(shù),使用array_shift()函數(shù)可以從一個(gè)數(shù)組的開頭刪除一個(gè)元素。盡管使用array_pop()或 array_shift()從數(shù)組中刪除了一個(gè)元素,你還可以把這個(gè)元素當(dāng)作一個(gè)變量來(lái)使用。
使用array_pop()從一個(gè)數(shù)組的末尾刪除一個(gè)元素:
?
/*建立一個(gè)數(shù)組*/
$fruitArray = array("apple", "orange", "banana", "kiwi", "pear");
/* 從數(shù)組的末尾刪除一個(gè)元素*/
$popped = array_pop($fruitArray);
/* 顯示刪除后數(shù)組的內(nèi)容和你刪除的元素*/
while (list($key,$value) = each($fruitArray)) {
echo "$key : $value
";
}
echo "
and finally, in $popped: $popped";
?>
運(yùn)行上面的腳本會(huì)得到下面的結(jié)果:
0 : apple
1 : orange
2 : banana
3 : kiwi
and finally, in $popped: pear
我們?cè)賮?lái)討論一個(gè)從一個(gè)數(shù)組的末尾刪除元素的例子:
?
/* 建立一個(gè)數(shù)組*/
$fruitArray = array("apple", "orange", "banana", "kiwi", "pear");
/*從一個(gè)數(shù)組的開始刪除一個(gè)元素*/
$shifted = array_shift($fruitArray);
/* 顯示刪除后數(shù)組的內(nèi)容和你刪除的元素*/
while (list($key,$value) = each($fruitArray)) {
echo "$key : $value
";
}
echo "
and finally, in $shifted: $shifted";
?>
運(yùn)行上述腳本會(huì)得到如下的顯示結(jié)果:
0 : orange
1 : banana
2 : kiwi
3 : pear
and finally, in $shifted: apple
另外還有幾個(gè)函數(shù)可以對(duì)數(shù)組中的元素進(jìn)行排序,但在這里我們將只簡(jiǎn)要介紹基本的排序函數(shù),說(shuō)明排序的過(guò)程:
$fruitArray = array("apple", "orange", "banana", "kiwi", "pear");
/* 對(duì)數(shù)組進(jìn)行排序*/
sort($fruitArray);
/*顯示每個(gè)元素及其序號(hào)*/
while (list($key,$value) = each($fruitArray)) {
echo "$key : $value
";
}
?>
運(yùn)行上述的腳本會(huì)得到如下的顯示結(jié)果:
0 : apple
1 : banana
2 : kiwi
3 : orange
4 : pear
關(guān)鍵詞標(biāo)簽:PHP
相關(guān)閱讀
熱門文章 plsql developer怎么連接數(shù)據(jù)庫(kù)-plsql developer連接數(shù)據(jù)庫(kù)方法 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫(kù)獲取用戶ip地理位置 在 PHP 中使用命令行工具
人氣排行 詳解ucenter原理及第三方應(yīng)用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫(kù)-plsql developer連接數(shù)據(jù)庫(kù)方法 PHP中防止SQL注入攻擊 PHP會(huì)話Session的具體使用方法解析 PHP運(yùn)行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫(kù) CakePHP程序員必須知道的21條技巧 PHP采集圖片實(shí)例(PHP采集)