fork(4) download
  1. <?php
  2.  
  3. $array = ["a", "b", "c", "d", "f"];
  4. $suffixed_array = preg_filter('/$/', '_M', $array);
  5. print_r($suffixed_array);
Success #stdin #stdout 0.01s 83328KB
stdin
Standard input is empty
stdout
Array
(
    [0] => a_M
    [1] => b_M
    [2] => c_M
    [3] => d_M
    [4] => f_M
)