Jump to content

About percentage


hackerkts

Recommended Posts

Let's say I have this,
[code]$type1 = '5'; // all the values are in %
$type2 = 15'';
$type3 = 20'';
$type4 = 50'';
$type5 = 10'';[/code]

Is it possible to assign them to
$type1_result = '11111';
$type2_result = '222222222222222';
$type3_result = '33333333333333333333';
$type4_result = '44444444444444444444444444444444444444444444444444';
$type5_resul = '5555555555';

Hope you understand what I'm trying to say..
Link to comment
https://forums.phpfreaks.com/topic/25536-about-percentage/
Share on other sites

Hmm ok, I will explain again..
If I put $A = 10;
Then I had another var, which is what I couldn't figure out myself.
Let's say that var is $A_Result, then I want the vaule of $A_Result to be AAAAAAAAAA. (There are 10's A)

So the value of $A_Result is depended on the value of $A.
Hmm.. Is this clear ?

To make it more clearer, this is the code I'm using now.
[code]    function rtd($length)
{
$dice1 = '5'; // Dice 1
$dice2 = '15'; // Dice 2
$dice3 = '20'; // Dice 3
$dice4 = '50'; // Dice 4
$dice5 = '10'; // Dice 5
$dice6 = '0'; // Dice 6

$chars = $dice1 . $dice2 . $dice3 . $dice4 . $dice5 . $dice6;
for ($x = 1; $x <= $length; $x++)
{
$number = rand(1, strlen($chars));
$dice .= substr($chars, $number - 1, 1);
}

return $dice;
}[/code]

Then when I echo out $dice, there's 5% will be Dice 1, 15% to be Dice 2, 20% to be Dice 3, 50% to be Dice 4, 10% to be Dice 5 and 0% to be Dice 6
Link to comment
https://forums.phpfreaks.com/topic/25536-about-percentage/#findComment-116530
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.