Rumah > Artikel > pembangunan bahagian belakang > Bertukar dalam PHP
Dalam artikel ini, kita akan mempelajari pertukaran nombor dalam PHP. Kami akan mempelajari cara untuk menentukan pertukaran, cara kod untuk menukar dua nombor, cara menukar lebih daripada dua nombor dan tiga nombor dan cara menukar nombor dengan atau tanpa pembolehubah sementara, dan banyak lagi.
IKLAN Kursus Popular dalam kategori ini PEMBANGUN PHP - Pengkhususan | 8 Siri Kursus | 3 Ujian Olok-olokMulakan Kursus Pembangunan Perisian Percuma Anda
Pembangunan web, bahasa pengaturcaraan, ujian perisian & lain-lain
Mari kita mulakan dengan definisi dahulu.
“Pertukaran dalam PHP ialah istilah yang ditakrifkan sebagai pertukaran nilai.”
Pertukaran dua nombor ialah proses untuk menukar dua nilai menggunakan atau tanpa menggunakan pembolehubah sementara. Saya harap contoh ini berguna kepada semua pengaturcara yang ingin mempelajari konsep pertukaran.
Terdapat dua cara untuk menukar nombor. Nombor ini memegang nilai berangka.
Andaikan kita mempunyai satu pembolehubah yang memegang nilai 10,
nombor1 = 10 ;
Dan pembolehubah lain yang memegang nilai 20,
nombor2 = 20;
Apabila menukar dua nombor ini, hasilnya sepatutnya,
nombor1 =20
nombor2= 10
Ini boleh dilakukan dengan penggunaan pembolehubah sementara ketiga dan tanpa pembolehubah sementara juga. Penukaran dua nombor boleh dilakukan menggunakan operator +, -, * dan /.
Kod:
<?PHP // Example of swapping of two numbers using a temporary variable // Declaring two variables $num1 = 100; $num2 = 200; // using echo statement print the variables before swapping two numbers echo "<br>"."Before Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<hr>"; // declaring temporary variable to be zero $temp = 0; // performing swap of numbers $temp = $num1; $num1 = $num2; $num2 = $temp; //using the echo statement print the variables after swapping the numbers echo "<br>"."After Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; ?>
Output:
Kod:
<?php // Example of swapping of two numbers without using a temporary variable // Declaring two variables $num1 = 100; $num2 = 200; // using echo statemnt print the variables before swapping two numbers echo "<br>"."Swap done without using temparory variable"; echo "<hr>"; echo "<br>"."Before Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<hr>"; // performing swap of numbers $num1 = $num1 - $num2; $num2 = $num1 + $num2; $num1 = $num2 - $num1; //using the echo statement print the variables after swapping the numbers echo "<br>"."After Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; ?>
Output:
Kod:
<?php // Example of swapping of two numbers using list() with array() // Declaring two variables $num1 = 100; $num2 = 200; // using echo statement print the variables before swapping two numbers echo "<br>"."Swap done without using predefined functions"; echo "<hr>"; echo "<br>"."Before Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<hr>"; // performing swap of numbers list($num1, $num2) = array($num2, $num1); //using the echo statement print the variables after swapping the numbers echo "<br>"."After Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; ?>
Output:
Terdapat dua cara untuk menukar nombor. Nombor ini memegang nilai berangka.
Sekarang kami telah mempelajari pertukaran dua nombor, kami telah mempelajari pertukaran tiga nombor. Contoh berikut menunjukkan cara pembolehubah sementara(temp) menukar tiga nombor.
Kod:
<?php // Example of swapping three numbers using temporary variable // Declaring three variables $num1 = 100; $num2 = 200; $num3 = 300; // using echo statement print the variables before swapping three numbers echo "<br>"."Swap done without using temporary variable"; echo "<hr>"; echo "<br>"."Before Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<br>"."Value of third number is = ". $num3; echo "<hr>"; // performing swap of numbers //assign first number the total of three numbers $temp = $num1; $num1 = $num2; $num2 = $num3; $num3 = $temp; //using the echo statement print the variables after swapping the numbers echo "<br>"."After Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<br>"."Value of third number is = ". $num3; ?>
Output:
Logiknya adalah mengira jumlah keseluruhan dan memberikannya kepada pembolehubah $num1.
Dan kemudian,
kira nilai $num1, tetapkan nilai ini kepada $num2,
kira nilai $num2, tetapkan nilai ini kepada $num3,
kira nilai $num3, dan tetapkan nilai ini kepada $num1 sekali lagi.
Kod:
<?php // Declaring three variables $num1 = 100; $num2 = 200; $num3 = 300; // using echo statement print the variables before swapping three numbers echo "<br>"."Swap done without using temporary variable"; echo "<hr>"; echo "<br>"."Before Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<br>"."Value of third number is = ". $num3; echo "<hr>"; // performing swap of numbers //assign first number the total of three numbers $num1 = $num1 + $num2 + $num3; $num2 = $num1 - ($num2 + $num3); $num3 = $num1 - ($num2 + $num3); $num1 = $num1 - ($num2 + $num3); //using the echo statement print the variables after swapping the numbers echo "<br>"."After Swap"; echo "<hr>"; echo "<br>"."Value of first number is = ". $num1; echo "<br>"."Value of second number is = ". $num2; echo "<br>"."Value of third number is = ". $num3; ?>
Output:
Saya harap artikel ini berguna kepada semua pengaturcara yang ingin mempelajari pertukaran nombor. Artikel ini mempunyai kedua-dua pertukaran dua dan tiga nombor dengan contoh yang sesuai. Contoh-contoh ini, jika diamalkan, akan membantu anda memahami konsep dan membantu anda mengingati logiknya juga.
Atas ialah kandungan terperinci Bertukar dalam PHP. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!