3v4l.org

run code in 300+ PHP versions simultaneously
<?php $email = "h@hotmail.com"; $em = explode("@", $email); $name = $em[0]; echo ((strlen($name) > 3) ? substr($name, 0, 3) : "*") . "@$em[1]"; $email = "hag@hotmail.com"; $em = explode("@", $email); $name = $em[0]; echo ((strlen($name) > 3) ? substr($name, 0, 3) : "*") . "@$em[1]"; $email = "verylongemail@hotmail.com"; $em = explode("@", $email); $name = $em[0]; echo ((strlen($name) > 3) ? substr($name, 0, 3) : "") . "*@$em[1]";

preferences:
39.17 ms | 402 KiB | 5 Q