You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
335 B
14 lines
335 B
<?php |
|
require __DIR__ . '/vendor/autoload.php'; |
|
|
|
use Cowsayphp\Farm; |
|
|
|
header('Content-Type: text/plain'); |
|
|
|
$text = "Set a message by adding ?message=<message here> to the URL"; |
|
if(isset($_GET['message']) && $_GET['message'] != '') { |
|
$text = $_GET['message']; |
|
} |
|
|
|
$cow = Farm::create(\Cowsayphp\Farm\Cow::class); |
|
echo $cow->say($text);
|
|
|