Heim  >  Artikel  >  Backend-Entwicklung  >  php array_push 向数组增加值函数_PHP教程

php array_push 向数组增加值函数_PHP教程

WBOY
WBOYOriginal
2016-07-20 11:06:461915Durchsuche

php  array_push 向数组增加值函数
 public static function insert(&$array, $key, $newValue, $before = true) {
  $result = false;
  $size = sizeof($array);
  for ($i=0; $i   $value = array_shift($array);
   if ($i==$key) {
    if ($before) {
     array_push($array, $newValue);
     array_push($array, $value);
    } else {
     array_push($array, $value);
     array_push($array, $newValue);
    }
    $result = true;
   } else {
    array_push($array, $value);
   }
  }
  if (!$result) {
   array_push($array, $newValue);
  }
  return;
 }


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445009.htmlTechArticlephp array_push 向数组增加值函数 public static function insert($array, $key, $newValue, $before = true) { $result = false; $size = sizeof($array); for ($i=0; $i$size; $i++)...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn