您的位置:首页 > 技术中心 > PHP教程 >

php怎么反转一个整数

时间:2022-02-25 19:45

php反转整数的方法:1、使用strval()函数,将指定整数转为字符串类型,语法“strval(整数)”;2、使用strrev()函数反转整数字符串即可,语法“strrev(整数字符串)”。

本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑

php怎么反转一个整数

在php中,想要反转一个整数,可以借助strrev()函数:

  • 先将指定整数转为字符串类型

  • 然后使用strrev()函数反转整数字符串即可

实现代码:

<?php
header("Content-type:text/html;charset=utf-8");
function reverse($num) {
	$str=strval($num);
	echo strrev($str)."<br>";
}
reverse(123);
reverse(234);
reverse(23455);
reverse(34235);
reverse(43233);
?>

1.png

说明:

strval()函数用于获取变量的字符串值。

strrev()函数用于反转字符串。

推荐学习:《PHP视频教程》

以上就是php怎么反转一个整数的详细内容,更多请关注gxlsystem.com其它相关文章!

热门排行

今日推荐

热门手游