[ create a new paste ] login | about

Link: http://codepad.org/aQnw0tcI    [ raw code | output | fork ]

PHP, pasted on Apr 20:
<?php

$responseText = array(
    array("hey","hi","hello there"),
    "! ",
    array("i am", "i'm"),
    " ",
    array("good", "great"),
    "! "
);
echo randomResponse($responseText);

function randomResponse($array){
    $result='';
    foreach ($array as $item){
        if (is_array($item)){
            $result.= $item[rand(0, count($item)-1)];
        }else{
            $result.= $item;
        }
    }
    return ($result);
}
?>


Output:
1
hello there! i am great! 


Create a new paste based on this one


Comments: