How to convert positive number to negative in PHP?

Member

by rollin , in category: PHP , 3 years ago

How to convert positive number to negative in PHP?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by dmitrypro77 , 3 years ago

@rollin You can multiply by -1 to convert any positive number to negative in PHP, here is code as example:


1
2
3
4
5
6
7
8
9
<?php

$number = 5;

// Make it positive in case if number is negative
$negative = abs($number) * -1;

// Output: -5
print_r($negative);


Member

by elnora , 2 years ago

@rollin 

In PHP, you can convert a positive number to a negative number by prefixing the number with a minus sign (-). For example, if you have a variable $x that contains the number 5, you can convert it to a negative number by doing:


$x = -5;


You can also use the unary negation operator (e.g. "-") to convert a number to negative:


$x = -$x;


This will change the sign of the number stored in $x to negative.

Related Threads:

How to convert a negative number to a positive number with PHP?
How to change number to negative number in kotlin?
How to convert string into number in PHP?
How to search negative number in solr?
How to convert number value to string in PHP?