<?php $str = "Hello, this is a test"; $str = preg_replace_callback('/(\w*)(\w)/u', function($m) { return mb_strtoupper($m[1]).mb_strtolower($m[2]); }, $str); echo $str;
You have javascript disabled. You will not be able to edit any code.