「php入門」strstr()で文字列が最初に現れる位置を見つける
phpコード
<?php
$email = 'yamada@sample.net’;
$domain = strstr($email, '@’);
echo $domain; // @sample.net と表示します
$user = strstr($email, '@’, true);
echo $user; // yamada と表示します
?>
Coding Changes the World
phpコード
<?php
$email = 'yamada@sample.net’;
$domain = strstr($email, '@’);
echo $domain; // @sample.net と表示します
$user = strstr($email, '@’, true);
echo $user; // yamada と表示します
?>