<?php $text = <<<TEXT user1,1234; user2,2345; user3,3456; TEXT; var_export( preg_match_all('/^([^,]+),(\d+)/m', $text, $m) ? array_combine($m[1], $m[2]) : [] );
You have javascript disabled. You will not be able to edit any code.