問題
如何從數組中詭秘的取值
解決方法
比如select count(*).....結果應該只有一個值吧,現在一個數組中只有這麼一個值,怎麼把它取出來呢?
前提:不知道數組鍵名,不能用數字索引
參考答案
array_values
參考答案
你看看手冊mysql_result()的用法,單個取值的話比較方便。
參考答案
原帖由 xdevil 於 2009-1-2 23:36 發表 [url=http://bbs.111cn.cn/redirect.php?goto=findpost&pid=812883&ptid=100203]鏈接標記[img]http://bbs.111cn.cn/images/common/back.gif[/img][/url]
array_values
這個函數返回的還是array,也沒有直接把值取出來
參考答案
不知道說啥,,
參考答案
mysql_fetch_row() //
$arr[0];
?>
不要忘記:mysql_fetch_row的使用..
參考答案
current
(PHP 3, PHP 4, PHP 5)
current -- 返回數組中的當前單元
說明
mixed current ( array &array )
參考答案
原帖由 於安 於 2009-1-2 23:54 發表 [url=http://bbs.111cn.cn/redirect.php?goto=findpost&pid=812910&ptid=100203]鏈接標記[img]http://bbs.111cn.cn/images/common/back.gif[/img][/url]
不要忘記:mysql_fetch_row的使用..
可惜,我沒用mysql
參考答案
原帖由 ddm 於 2009-1-2 23:59 發表 [url=http://bbs.111cn.cn/redirect.php?goto=findpost&pid=812916&ptid=100203]鏈接標記[img]http://bbs.111cn.cn/images/common/back.gif[/img][/url]
current
(PHP 3, PHP 4, PHP 5)
current -- 返回數組中的當前單元
說明
mixed current ( array &array )
非常感謝大家,要的就是這個寶貝[img]http://www.111cn.cn/bbs/images/smilies/default/loveliness.gif[/img]
參考答案
方法很多的,如:
array_shift
array_pop
這函數都能實現你要的功能。