Answers for "what does the percentage operator do php"

PHP
0

percentage in php

<?php
// How much is the x percentage of given value

$percentage = 10;
$totalValue = 500;

// 10% of 500
echo $newValue = ($percentage*$totalValue)/100;
Posted by: Guest on November-15-2021
0

php - How do I calculate the percentage of a number?

//ENTER  PERCENT AND AMOUNT 
//IT WILL RETURN OUTPUT
//INTAKE: 2% OF 10
//OUTPUT : 0.2
function calc_percent($percent, $amt) {
  return  $output = ($per/100 * $amt);
}
Posted by: Guest on February-17-2022

Code answers related to "what does the percentage operator do php"

Browse Popular Code Answers by Language