Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何排除从下面的数组中提取的某个 ID?
<?php echo $EM_Category->id; ?>
该数组正在提取所有 ID,但我想排除特定 ID 并包括其余 ID。
会是通过使用unset删除特定的ID吗?
unset
您可以使用它或使用array_diff_key().
array_diff_key()
PS。你的代码没有意义。你声称拥有一堆 ID,但你只是在呼应一个。可能您需要粘贴更多代码。