Skip to content

Instantly share code, notes, and snippets.

@4lb0
Created September 11, 2012 11:09
Show Gist options
  • Save 4lb0/3697647 to your computer and use it in GitHub Desktop.
Save 4lb0/3697647 to your computer and use it in GitHub Desktop.
Devuelve un listado de mensajes al azar
<?php
$mensajes = array('Notificacion 1', 'Hola Mudo', 'Puto el que lee', 'Ganaste','Sos el visitante numero 1000');
shuffle($mensajes);
header("Content-Type: application/json; charset=utf-8");
echo json_encode(array_slice($mensajes, mt_rand(0, count($mensajes))));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment