Skip to content

Instantly share code, notes, and snippets.

@pazteddy
Created January 22, 2026 16:18
Show Gist options
  • Select an option

  • Save pazteddy/edcbd0b53a635ba0af1f7b5968b77f24 to your computer and use it in GitHub Desktop.

Select an option

Save pazteddy/edcbd0b53a635ba0af1f7b5968b77f24 to your computer and use it in GitHub Desktop.
Lista de usuarios
<?php
$users = [
[
"id" => 1,
"name" => "Ana García",
"username" => "ana.garcia",
"email" => "ana.garcia@example.com",
"role" => "user",
"status" => "active",
"last_login" => "2026-01-20 09:15"
],
[
"id" => 2,
"name" => "Luis Pérez",
"username" => "luis.perez",
"email" => "luis.perez@example.com",
"role" => "admin",
"status" => "active",
"last_login" => "2026-01-21 08:40"
],
[
"id" => 3,
"name" => "María López",
"username" => "maria.lopez",
"email" => "maria.lopez@example.com",
"role" => "editor",
"status" => "inactive",
"last_login" => "2026-01-15 18:10"
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment