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.
私はこれを試しました:
$number = 11223344556677; echo number_format($number,2,'/',2,'/','');
しかし、結果は得られませんでした。助けてください。
まあ、number_formatそうするように作られているわけではありません。たとえば、次のように、さまざまな方法で自分で行うことができます。
number_format
echo preg_replace('/^(\d*)(\d{2})(\d{2})$/', '$1/$2/$3', $number);
このようなもの?
$formatted_number = preg_replace('(\d+?)(\d\d)(\d\d)','$1/$2/$3',$number);