5 lines
96 B
PHP
5 lines
96 B
PHP
<?php
|
|
$mailid = 'rayy@example.com';
|
|
$user = strstr($mailid, '@', true);
|
|
echo $user."\n";
|
|
?>
|