In this tutorial, we will discuss the concept of PHP program to Addition of Two Numbers using function – PHP program
In this topic, we are going to learn how to write a program to add two numbers using user-defined function in PHP programming language
In this program, the user declare two integer variables $x and $y as parameters of the function. Then two numbers are added using plus(+) operator. finally when the user call the function, the result is displayed on the screen
Program 1
<?php function addTwoNumbers($x, $y) { return $x + $y; } echo "Sum of 10 and 20: ".addTwoNumbers(10,20); echo "<br>"; echo "Sum of 100 and 205: ".addTwoNumbers(100,205); echo "<br>"; echo "Sum of 100 and -20: ".addTwoNumbers(100,-20); echo "<br>"; ?>
When the above code is executed, it produces the following result
Sum of 10 and 20: 30 Sum of 100 and 205: 305 Sum of 100 and -20: 80
In this program, the user declare two integer variables $x and $y as parameter of the function. Then two numbers are added using plus(+) operator. Finally when the user call the function, the result is displayed on the screen
Program 2
<?php function addTwoNumbers($x, $y) { $sum=$x + $y; return $sum; echo $sum; } echo "Sum of 10 and 30: "; echo addTwoNumbers(10,30); echo "<br>"; echo "Sum of 100 and 205: "; echo addTwoNumbers(100,205); echo "<br>"; echo "Sum of 100 and -20: "; echo addTwoNumbers(100,-20); echo "<br>"; ?>
When the above code is executed, it produces the following result
Sum of 10 and 30: 40 Sum of 50 and 20: 70 Sum of 80 and -20: 60
Similar post
Sum of two numbers in C language
Sum of two numbers in C++ language
Sum of two numbers in Python language
Sum of two numbers in Java language without + operator
Sum of two numbers in Java language using bitwise operator
Sum of two numbers in C language without + operator
Sum of two numbers in C language using bitwise operator
Calculate addition of two numbers using method in Java language
Calculate addition of two numbers using function in C language
Calculate addition of two numbers using function in C++ language
Calculate addition of two numbers using function in Python language
Operator in Java language
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…