How can I add "Please choose" to the beginning of this array
$enDuration = range( 0 , 60);
Best would be it all happens in ONE line as it is for a language config file and should stay as clean as possible. Array_combine didn't work for me.
How can I add "Please choose" to the beginning of this array
$enDuration = range( 0 , 60);
Best would be it all happens in ONE line as it is for a language config file and should stay as clean as possible. Array_combine didn't work for me.
收起
You can use array_merge
, like this:
$enDuration = array_merge(['Please choose'], range(0, 60));
报告相同问题?