PHP

How to Swap Two Numbers in PHP1 min read

Write a PHP script to swap two numbers. In this tutorial, we are going to write a code to swap two numbers in PHP.

There are multiple approaches by which you can swap two numbers.




i) We can swap two numbers using third or temp variable.

ii) We can swap two numbers without using third variable.

Swap Two Numbers in PHP without using third Variable

Let’s write a PHP script to swap two numbers without using third variable. In this script, we create a method swap which takes two numbers as an argument and print the value of both numbers after swapping.

Swap Two Numbers in PHP using Third Variable

We have written a PHP script to swap two numbers without using third variable. Let’s write PHP code which swap two numbers using third variable.

Leave a Comment