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.
重複の可能性: php 特定のロケールの現在の小数点/千の区切り記号を取得する方法
言語/国コードを知っていれば、PHP で小数点を取得できますか?
または、この情報を含む公開データベース/csv/仕様はありますか?
localeconv()を見てください。あなたはこれを行うことができます:
$locale_info = localeconv(); echo $locale_info['decimal_point'];