Skip to content

Instantly share code, notes, and snippets.

View jimmy89Li's full-sized avatar

Li jimmy89Li

View GitHub Profile
@jimmy89Li
jimmy89Li / 3randomlinesx2randomfunctions.php
Created September 11, 2015 11:28
4x Random Lines with 2x Random Functions
<?php
function getClass(){
$class = "Level 1";
$random = rand(0,3);
if($random==0)
{
$class = "Level 2";
}
elseif($random==1)
@jimmy89Li
jimmy89Li / randomAge.php
Last active September 10, 2015 12:03
Simple PHP code giving random age until you get to 50.
<?php
$age = 0;
$message0 = "At first, ";
$message1 = "you are age ";
$message2 = "After a while: ";
$message3 = "you die!";
echo ($message0);
while($age<50){