php / php/php-src

bcmath: strip leading/trailing zeros option (code is already there)

オープン
#19,135 コメント 1 件 リアクション 0 件 担当者 1 名 GitHub で見る

@SakiTakamachi がすでに取り組んでいます。

2025年7月15日 から。

Extension: bcmath Feature Status: Requires RFC
主要言語
C
スター
40.4k
フォーク
8.2k
平均マージ
2日 13時間
マージ済み PR(30日)
96

説明

Description

@SakiTakamachi It seems that you're the one taking care of bcmath at least recently.

Would it be possible to add a flag to the bc* functions such as bcadd, bcmul and so on, that would strip the trailing and/or leading zeros from the results? Maybe even make it the default? At this time, bscale(10); bcadd('1', '2'); will produce the result '3.0000000000', which while correct, isn't really ideal.

Or at the very least, give public access to the already existing functions bc_rm_trailing_zeros() and _bc_rm_leading_zeros() ?

Ideally it would also have a flag to either keep or not the integer zero in values such as 0.1234 (so the strip leading zeros would either keep it or just return .1234).

I'm using bcmath very extensively in a project where performance matters and doing such sanitization in PHP itself is 1) a pain and 2) a performance sink. It would really help if that's something that could be handled directly by bcmath, which is otherwise a wondeful library that thankfully exists.

Thank you for your work on bcmath.

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。