Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は文字列を持っています
$string;
この文字列には、次のような数字があります3743687
3743687
最後を除いて、すべての数字の後にスラッシュを追加したいので、結果は
3/7/4/3/6/8/7
これを行うphp関数はありますか?何かアドバイス ?ありがとう
$string = '3743687'; $newString = implode('/',str_split($string)); var_dump($newString);
$string = "3743687"; $string = implode("/", str_split($string)); echo $string;