PHP ... operator 使用方式 Posted on 2016-10-02 | Edited on 2018-09-24 | In 資訊技術 今天發現一個很酷的 php 5.6 以後的 feature 直接 show code 比較快 1234567891011121314<?php$string = "Controller@home";test(...explode("@", $string));function test($controller_name, $funciton_name){ var_dump($controller_name, $funciton_name);}// print result// string(10) "Controller"// string(4) "home" 這個 operator 會直接將 explode 出來的 array 直接依序的放入 function 中