Skip to content

Instantly share code, notes, and snippets.

@pazteddy
Last active January 30, 2026 17:55
Show Gist options
  • Select an option

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

Select an option

Save pazteddy/1167ef5ea26eabf9f5fc5c46a2cc7e12 to your computer and use it in GitHub Desktop.
Lista de usuarios con edades y roles
<?php
declare(strict_types=1);
$users = [
["name" => "Teddy", "role" => "admin", "age" => 28],
["name" => "Edgar", "role" => "user", "age" => 16],
["name" => "Devi", "role" => "editor", "age" => 22],
["name" => "Maria", "role" => "user", "age" => 35],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment