Headline

6/recent/ticker-posts

Header Ads Widget

Mengenal Operator Matematika Pada Pemrograman PHP dan Contoh Penerapan

Nulis Coding - Mengenal Operator Matematika Pada Pemrograman PHP dan Contoh Penerapan

Bagaimana operasi hitung matematika dalam pemrograman PHP? Dalam artikel "Mengenal Operator Matematika Pada Pemrograman PHP" akan nulis coding jelaskan menganai bebarapa operator matematika dalam PHP.

source: .hipwee.com

Latar Belakang
Operasi Matematika seperti pengurangan, penjumlahan, pembagian, perkalian, modulus dan pemangkatan sangat berguna dalam dunia programing. Setiap bahasa pemrograman sudah pasti ada dan bisa melakukan operasi matematika, karena program itu sendiri merupakan implementasi dari matematika komputasi.
Setiap bahasa pemrograman tidak terlepas dari operasi hitung matematika, baik untuk menyelesaikan berbagai kasus dan permasalahan yang sederhana hingga kompleks salah satunya dalam pemrograman PHP. dalam PHP sangat banyak operator hitung yang dapat digunakan untuk proses perhitungan.

Fungsi Matematika
Fungsi matematika dapat menangani nilai-nilai dalam kisaran bilangan bulat dan mengapung jenis.

Fungsi Instalasi 
Fungsi matematika PHP merupakan bagian dari inti PHP. Tidak diperlukan instalasi untuk menggunakan fungsi-fungsi ini.
Sama seperti bahasa pemrograman yang lain, dalam PHP operasi matematika mengikuti simbol dari matematika itu sendiri seperti penjumlahan (+), pengurangan (-), perkalian (*), serta pembagian (/). Dalam melakukan opersi matematika dalam PHP, setiap kali kita akan mengoperasikan sebuah bilangan pastikan bilangan tersebut merupakan sebuah nilai dari suatu variable, maka dapat dioperasikan dan kita tidak dapat langsung mengoperasikan sebuah bilangan dengan bilangan lain tanpa kita menyimpannya dalam sebuah variable.

Fungsi PHP Matematika

FunctionDescription
abs()Returns the absolute (positive) value of a number
acos()Returns the arc cosine of a number
acosh()Returns the inverse hyperbolic cosine of a number
asin()Returns the arc sine of a number
asinh()Returns the inverse hyperbolic sine of a number
atan()Returns the arc tangent of a number in radians
atan2()Returns the arc tangent of two variables x and y
atanh()Returns the inverse hyperbolic tangent of a number
base_convert()Converts a number from one number base to another
bindec()Converts a binary number to a decimal number
ceil()Rounds a number up to the nearest integer
cos()Returns the cosine of a number
cosh()Returns the hyperbolic cosine of a number
decbin()Converts a decimal number to a binary number
dechex()Converts a decimal number to a hexadecimal number
decoct()Converts a decimal number to an octal number
deg2rad()Converts a degree value to a radian value
exp()Calculates the exponent of e
expm1()Returns exp(x) - 1
floor()Rounds a number down to the nearest integer
fmod()Returns the remainder of x/y
getrandmax()Returns the largest possible value returned by rand()
hexdec()Converts a hexadecimal number to a decimal number
hypot()Calculates the hypotenuse of a right-angle triangle
is_finite()Checks whether a value is finite or not
is_infinite()Checks whether a value is infinite or not
is_nan()Checks whether a value is 'not-a-number'
lcg_value()Returns a pseudo random number in a range between 0 and 1
log()Returns the natural logarithm of a number
log10()Returns the base-10 logarithm of a number
log1p()Returns log(1+number)
max()Returns the highest value in an array, or the highest value of several specified values
min()Returns the lowest value in an array, or the lowest value of several specified values
mt_getrandmax()Returns the largest possible value returned by mt_rand()
mt_rand()Generates a random integer using Mersenne Twister algorithm
mt_srand()Seeds the Mersenne Twister random number generator
octdec()Converts an octal number to a decimal number
pi()Returns the value of PI
pow()Returns x raised to the power of y
rad2deg()Converts a radian value to a degree value
rand()Generates a random integer
round()Rounds a floating-point number
sin()Returns the sine of a number
sinh()Returns the hyperbolic sine of a number
sqrt()Returns the square root of a number
srand()Seeds the random number generator
tan()Returns the tangent of a number
tanh()Returns the hyperbolic tangent of a number

Contoh Penerapan Dalam Code PHP

<?php 
$x = 3 ;
$y = 6 ;
$z = 9 ; 
// Penjumlahan
$a = $x + $y ;
echo "$x + $y = $a <br>" ; 
// Pengurangan
$a = $z - $y ;
echo "$z - $y = $a <br>" ; 
// Perkalian
$a = $x * $y ;
echo "$x * $y = $a <br>" ;
// Pembagian
$a = $z / $x ;
echo "$z / $x = $a <br>" ;
// Modulus
$a = $y % $x ;
echo "$y % $x = $a <br>" ; 
?>

Untuk penambahan atau pengurangan satu baris script, contoh penerapan:

<?php 
$x = 3 ;
$y = 6; 
// Pengurangan 1
$x-- ;
echo $x . '<br>' ; 
// Penjumlahan 1
$y++ ;
echo $y . '<br>' ; 
?>
Nah, itu tadi mengenai artikel "Mengenal Operator Matematika Pada Pemrograman PHP dan Contoh Penerapan" semoga bermanfaat, silahkan jika teman-teman ada yang ingin ditambahkan bisa melalui komentar di bawah ya guys. terimakasih.

Referensi:
1. https://www.w3schools.com/php/php_ref_math.asp
2. http://www.teknikinformatika.net/2014/07/09/php-tutorial-6-operasi-matematika-php-untuk-pemula/

Post a Comment

0 Comments