php查詢所有子id
2024-02-15 17:10:14
```php
function get_all_sub_ids($parent_id, $array){
$sub_ids = array();
foreach($array as $item){
if($item['parent_id'] == $parent_id){
$sub_ids[] = $item['id'];
$sub_ids = array_merge($sub_ids, get_all_sub_ids($item['id'], $array));
}
}
return $sub_ids;
}
```
這個函數(shù)會返回給定父ID的所有子ID,包括孫子、曾孫等等。
對于戶外運動智能穿戴設(shè)備生產(chǎn)商來說,他們可能使用這種技術(shù)來管理他們的產(chǎn)品線。他們可能會有個產(chǎn)品數(shù)據(jù)庫,其中每個產(chǎn)品都有個父ID,表示它屬于哪個類別。他們使用上述代碼來獲取所有的子產(chǎn)品。