fork download
  1. <?php
  2. $s = '{somevalue:3}';
  3. '/\{([^:]+):(\d+)\}/',
  4. create_function('$m', 'return substr($m[1], 0, $m[2]);'), $s);
  5. print($s);
  6. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
som