<?php preg_replace_callback( '#a#', function($matches) { var_dump($matches); }, 'aa' ); preg_replace_callback( '#(?<hello>a)#', function($matches) { var_dump($matches); }, 'aa' );
You have javascript disabled. You will not be able to edit any code.