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.
このようなものがどのように機能するのか興味があります
class Test { public $price; } $obj = new Test(); $obj->price = 4500.00; echo $obj->price;
どうすればその値を as4500.00と notで返すことができ4500ますか?
4500.00
4500
echo number_format($obj->price,2);
千単位の区切り記号がわからない場合:
echo number_format($obj->price,2,'.','');
number_formatを参照