<?php $tests = [ '133|mickmackusa|100|90|500', '133|mickmackusa|100|90', '133|mickmackusa|100', '133|mickmackusa', '133', '', ]; foreach ($tests as $test) { $matches = sscanf($test, '%d|%[^|]|%d|%d|%d', $user_id, $name, $limit, $remaining, $reset); var_export([ 'matches' => $matches, 'user_id' => $user_id, 'name' => $name, 'limit' => $limit, 'remaining' => $remaining, 'reset' => $reset ]); echo "\n"; unset($matches, $user_id, $name, $limit, $remaining, $reset); }
You have javascript disabled. You will not be able to edit any code.