php – 删除数组的整数索引

前端之家收集整理的这篇文章主要介绍了php – 删除数组的整数索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在一个网站上工作,我们需要删除类型为整数的数组的索引.
你有任何想法或建议吗?
我的数组看起来像这样:

  1. Array
  2. (
  3. [0] => first
  4. [first] => second
  5. [1] => second
  6. [second] => second
  7. [2] => third
  8. [third] => third
  9. [3] => forth
  10. [forth] => v
  11. [4] => fifth
  12. [fifth] => fifth
  13. )

我们如何从数组中删除整数索引.更多的事情要注意我们没有静态数组我们不知道有多少索引.

需要这样的:

  1. Array
  2. (
  3. [first] => second
  4. [second] => second
  5. [third] => third
  6. [forth] => v
  7. [fifth] => fifth
  8. )
最佳答案
数据库方案:

要从MysqL数据库中仅获取关联数组,请使用:mysqli_fetch_assoc()而不是mysqli_fetch_array().

MysqLi_fetch_array()获取整个数组 – 整数索引以及列名作为键.

MysqLi_fetch_assoc()仅将列名称作为键提取. – 从而摆脱整数键.

一般解决方

为了做你一般所问的我会使用:

  1. foreach($array as $key => $value){
  2. if(is_numeric($key)) unset($array[$key]);
  3. }

如果你愿意,你也可以使用is_int()..

猜你在找的MySQL相关文章