<?php $start = 6; $list = [ '1楼', '2楼', '3楼', '4楼', '5楼', ]; $list = array_flip( array_map(function($key) use ($start) { return $start + (int)$key; }, array_flip($list)) ); var_dump($list);
You have javascript disabled. You will not be able to edit any code.