M
M
Max Darkleviathan2019-07-11 20:57:29
Mathematics
Max Darkleviathan, 2019-07-11 20:57:29

How to multiply a variable by 100% in php?

I do this, it gives me an error:
$result=$ipsa3*100%;

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Sergey Sokolov, 2019-07-11
@darkleviathan

Multiply by 100%, apparently from the mentioned argument $ipsa3like so:

$result = $ipsa3 * ((100 / 100) * $ipsa3);
// или просто
$result = $ipsa3 * $ipsa3;

With a variable percentage
$percent = 100; // сколько процентов
$result = $ipsa3 * (($percent / 100) * $ipsa3);

Проценты это доля от чего-то. Число 1/100 (сотых долей чего-то). Целое что-то это всегда 100% этого чего-то.
50% это 50/100 или половина чего-то, что-то * 0.5
Задача «умножить на 100%» хоть и звучит несколько странно, но выполнима, если понять, на 100% от чего просят умножить. Т.е. на целое что? Тут предполагаю, что на целую эту же переменную $ipsa3

A
Anton Neverov, 2019-07-11
@TTATPuOT

You can multiply numbers, not percentages. This is programming, not a calculator.
Doc: https://www.php.net/manual/en/language.operators.a... Keep in mind that $ipsa3 must still be a number.

K
Konstantin Pak, 2019-07-12
@pakost2019

a percent is a hundredth, and 100 percent is 1,
respectively
$result = $ipsa3 * 1;
and it is better just $result = $ipsa3;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question