I have a value, lets say its 1000. Now I have to generate a random minus or plus percentage of 1000. In particular I have to generate or a -20% of 1000 or a +20% of 1000 randomly.
I tried using rand()
and abs()
but with no success..
Is there a way in PHP to achieve the above?
rand(0, 1) seems to work fine for me. Maybe you should make sure your percentage is in decimal format.
Or if you want some sort of running balance type thing....
A bit of basic mathematics