joomla - Calculations In PHP -


i needing perform calculation , round results in php. have tried below end 0. if manually perform calculation should not case. below syntax , after is

val1-val2 answer above / val1 answer above * 100 (to percent) 

here syntax use

print "<td>" . number_format(round($res->val1-$res->val2/$res->val1)*100) . "%" . "</td>"; 

edit
let's use real life example $val1 = 1122 $val2 = 280

i want calculation steps $val1-$val2 = 842
then 842/$val1 or 842/1122 = .75

if use ($val1-$val2)/$val1 = 1 incorrect.

echo round((($val1 - $val2) / $val1) * 100).'%'; 

works fine? see here https://3v4l.org/d4bpe


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -