使用前:
Array ( [0] => 6 [1] => 6 )
$result_01 = array_flip($paperArr);
$paperArr  = array_keys($result_01);

  使用后:

Array
(
    [0] => 6
)

相关文章: