How to convert positive number to negative number in php

藏色散人
Release: 2023-03-12 11:00:01
Original
2700 people have browsed it

php method to convert a positive number to a negative number: 1. Create a PHP sample file; 2. Define a positive number variable; 3. Convert a positive number to a negative number through "$number *= -1;" That’s it.

How to convert positive number to negative number in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

How to convert positive numbers in php Convert to negative number?

The code example of converting a positive number to a negative number is as follows;

$number = 99;
$number *= -1;
echo $number;   //输出 -99
Copy after login

Attachment:

Convert a negative number to a positive number

$number = -11;
$result = abs($number);
echo $result;   //输出 11
Copy after login

abs() function returns a number Absolute value.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to convert positive number to negative number in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template