'; $options = array( [ 'text' => 'Built with ♡ by '.$aOpen.'your friendly neighbourhood laser nerds.', 'weight' => 25 ], [ 'text' => 'Built with ♡ by your friends at '.$aOpen.'Legacy Tattoo Removal.', 'weight' => 15 ], [ 'text' => 'Your friendly '.$aOpen.'Edmonton tattoo removal crew.', 'weight' => 15 ], [ 'text' => $aOpen.'tattoo removal with ♡', 'weight' => 15 ], [ 'text' => 'From '.$aOpen.'cover ups to fresh starts - we\'re the laser nerds with ♡.', 'weight' => 10 ], [ 'text' => $aOpen.'See the difference at Legacy Tattoo Removal', 'weight' => 10 ], [ 'text' => 'Make space for your next tattoo at '.$aOpen.'Legacy Tattoo Removal.', 'weight' => 10 ], [ 'text' => $aOpen.'We\'re your artist\'s secret weapon.', 'weight' => 15 ] ); $totalWeight = 0; foreach ($options as $option) { $totalWeight += (int)$option['weight']; } $randomNumber = mt_rand(1, $totalWeight); $weightSum = 0; foreach ($options as $option) { $weightSum += (int)$option['weight']; if ($randomNumber <= $weightSum) { return '
'.$option['text'].'
'; } } return ''.$options[0]['text'].'
'; } }