Longhorn PHP 2026 - Call For Papers

Mathematical Functions

Giriş

These math functions will only handle values within the range of the int and float types. To handle larger numbers, take a look at the arbitrary precision math or GNU Multiple Precision functions functions.

  • Öntanımlı Sabitler
  • RoundingMode — The RoundingMode Enum
  • Math İşlevleri
    • abs — Mutlak değer
    • acos — Ark kosinüs
    • acosh — Ters hiperbolik kosinüs
    • asin — Ark sinüs
    • asinh — Ters hiperbolik sinüs
    • atan — Ark tanjant
    • atan2 — Arc tangent of two variables
    • atanh — Ters hiperbolik tanjant
    • base_convert — Bir sayıyı keyfi tabanlar arasında dönüştürür
    • bindec — İkilikten onluğa
    • ceil — Kesirleri yukarı yuvarlar
    • cos — Kosinüs
    • cosh — Hiperbolik kosinüs
    • decbin — Onluktan ikiliğe
    • dechex — Onluktan onaltılığa
    • decoct — Onluktan sekizliğe
    • deg2rad — Converts the number in degrees to the radian equivalent
    • exp — e sayısının üssünü hesaplar
    • expm1 — exp($sayı) - 1 ifadesinin sonucunu, sayının değeri sıfıra yakın olduğunda bile doğru kalacak biçimde döndürür
    • fdiv — Divides two numbers, according to IEEE 754
    • floor — Kesirleri aşağı yuvarlar
    • fmod — Bağımsız değişkenlerin bölümünden gerçek sayı kalanı döndürür
    • fpow — Raise one number to the power of another, according to IEEE 754
    • hexdec — Onaltılıktan onluğa
    • hypot — Calculate the length of the hypotenuse of a right-angle triangle
    • intdiv — Integer division
    • is_finite — Checks whether a float is finite
    • is_infinite — Checks whether a float is infinite
    • is_nan — Checks whether a float is NAN
    • log — Doğal logaritma
    • log10 — 10 tabanında logaritma
    • log1p — log(1 + sayı) ifadesinin sonucunu, sayının değeri sıfıra yakın olduğunda bile doğru kalacak biçimde döndürür
    • max — Find highest value
    • min — Find lowest value
    • octdec — Octal to decimal
    • pi — Pi sayısının değerini döndürür
    • pow — Üstel ifade
    • rad2deg — Converts the radian number to the equivalent number in degrees
    • round — Rounds a float
    • sin — Sinüs
    • sinh — Hiperbolik sinüs
    • sqrt — Karekök
    • tan — Tanjant
    • tanh — Hiperbolik tanjant
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top