<?php $subject = '1234567890'; preg_replace_callback( '#^([a-z]+)$|^([0-9]+)$#', function ($m) { var_dump($m); return null === $m[1] ? '1' : 'a'; }, $subject, 1, $count, PREG_UNMATCHED_AS_NULL );
You have javascript disabled. You will not be able to edit any code.