fork download
  1. <?php
  2. $tokenList = preg_split('/_(?=[^_]+$)/','test_name_01');
  3. print_r($tokenList);
  4. ?>
Success #stdin #stdout 0.02s 24568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => test_name
    [1] => 01
)