mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-16 14:33:14 +00:00
17 lines
363 B
PHP
17 lines
363 B
PHP
<?php
|
|
/* yadl_spaceid - Skip Stamping */
|
|
header('Content-Type: application/json');
|
|
|
|
$messages =<<<END
|
|
[
|
|
{ "animal" : "Cat", "message" : "Meow" },
|
|
{ "animal" : "Dog", "message" : "Woof" },
|
|
{ "animal" : "Cow", "message" : "Moo" },
|
|
{ "animal" : "Duck", "message" : "Quack" },
|
|
{ "animal" : "Lion", "message" : "Roar" }
|
|
]
|
|
END;
|
|
|
|
echo($messages);
|
|
?>
|