App下载

demo_func_math_abs 在线工具

demo_func_math_abs 在线工具

<?php
echo(abs(6.7) . "<br>");
echo(abs(-6.7) . "<br>");
echo(abs(-3) . "<br>");
echo(abs(3));
?>
运行结果