<?php
$str = 'abcde';
$str = str_replace('ab', '', $str);
echo $str; // -> cde
?>
phpで文字列中の @ を消したくて試行錯誤して、凄く簡単な方法で解決したのでメモしました。
Go to list of users who liked
More than 5 years have passed since last update.
<?php
$str = 'abcde';
$str = str_replace('ab', '', $str);
echo $str; // -> cde
?>
phpで文字列中の @ を消したくて試行錯誤して、凄く簡単な方法で解決したのでメモしました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked