php遍歷類中包含的所有元素的方法

2022-10-06 07:03:11 字數 391 閱讀 2447

這裡可獲得php類包含的所有元素以key-value的形式輸出

class mytestclass

$rc = new reflectionclass('mytestclass');

$v = $rc->getconstants();

asort($v);// sort by value

//程式設計客棧ksort($v);// sort by key

foreach ( $v as $name => $value)

執行結果如下:

teststr1 => hello

testvar1 => 1001

testvar2 => 1002

本文標題: php遍歷類中包含的所有元素的方法

本文位址:

Java中怎樣遍歷Map的所有的元素

jdk1.4中 map map new hashmap iterator it map.entryset iterator while it.hasnext 返回的 set 中的每個元素都是乙個 map.entry 型別。private hashtable emails new hashtable ...

Java中怎樣遍歷Map的所有的元素

jdk1.4中 map map new hashmap iterator it map.entryset iterator while it.hasnext jdk1.5中 應用新特性for each迴圈 map m new hashmap for object o map.keyset 返回的 s...

遍歷目錄中的所有檔案,檔名稱中包含空格

使用ls遍歷檔名稱時發現,如果檔名稱中有空格的話,會根據空格將檔名稱切分成多段,所以做了如下處理 1.先將空格替換成某個特殊字串 ls tr 2.在使用時,將特殊字串 換回空格 pathfile echo file sed s g bin bash for file in ls tr do path...