如何在 PHP 中反转数字?

本教程重点介绍如何在 PHP 中反转数字。您将学习如何在 PHP 中使用 strrev() 函数。我们将使用如何使用 PHP 反转数字。如果您对如何使用 PHP 使用 strrev() 函数有疑问,那么我将给出一个简单的示例和解决方案。

现在,让我们看看如何使用 PHP 反转数字的文章。这是如何使用 PHP 的 strrev() 函数的简单示例。您可以了解如何在 PHP 中使用 strrev() 函数的概念。如果您对如何在 PHP 中反转数字有疑问,那么我将给出一个简单的示例和解决方案。

示例 1:在不使用任何 PHP 函数的情况下反转 PHP 中的数字

<!DOCTYPE html>
<html lang="en">
<head>
<title>Reverse number in PHP without using any function PHP </title>
</head>
<body>
<h4>Reverse number in PHP without using any function PHP </h4>

<?php
//define a variable and assign value
$num = 23456;

//define variable and initialize with 0
$revNo = 0;

// iterate with loop
while ($num > 1)
{
// Multiply the reverse number by 10, and add the remainder which comes after dividing the number by 10.

$rem = $num % 10;
$revNo = ($revNo * 10) + $rem;
$num = ($num / 10);
}
//Print the reversed number
echo "Reverse number of 23456 is: $revNo";
?>

</body>
</html>

 

示例 2:使用 PHP 中的 strrev() 函数保留号码

<!DOCTYPE html>
<html lang="en">
<head>
<title>Reverse number in PHP with using strrev() function PHP </title>
</head>
<body>
<h4>Reverse number in PHP with using strrev() function PHP </h4>

<?php
$number = 123456;
echo "Reverse number of $number is " .strrev( $number );
?>

</body>
</html>

 

THE END
分享
二维码
海报
如何在 PHP 中反转数字?
本教程重点介绍如何在 PHP 中反转数字。您将学习如何在 PHP 中使用 strrev() 函数。
<<上一篇
下一篇>>