1 2 3 4 5 6 7 | <?php $emailid = 'algoritmaornekleri@gmail.com'; $username = strstr($emailid, '@', true); echo $username."\n"; ?> |
1 2 3 | algoritmaornekleri |
1 2 3 4 5 6 7 | <?php $emailid = 'algoritmaornekleri@gmail.com'; $username = strstr($emailid, '@', true); echo $username."\n"; ?> |
1 2 3 | algoritmaornekleri |
Add Comment