Blogger Information
Blog 142
fans 5
comment 0
visits 130209
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
循环遍历
php开发大牛
Original
741 people have browsed it

最原始的方式,臃肿且不够优雅,极力抵制。

<?php

function resetArr($arr){
 $temp = array();
 foreach($arr as $v){
   $temp[] = $v;
 }
 return $temp;
}

$arr = array(
 1 => 'apple',
 3 => 'banana',
 5 => 'orange'
);

print_r(resetArr($arr));

$arr1 = array(
 'name' => 'jerry',
 'age' => 16,
 'height' => '18cm'
);

print_r(resetArr($arr1));


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post