Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active June 5, 2026 00:57
Show Gist options
  • Select an option

  • Save estefanionsantos/8eade4889dd56972aba81a8a8a17233b to your computer and use it in GitHub Desktop.

Select an option

Save estefanionsantos/8eade4889dd56972aba81a8a8a17233b to your computer and use it in GitHub Desktop.
02 coreuri
<?php
$route['/afrodite'] = 'mitologia/afrodite';
$route['/journals'] = 'blogs';
$route['/blog/joe'] = 'blogs/users/34';
# Wildcards
$route['/user/{id}/{name}'] = 'user/:id/:name';
$route['/product/{id}'] = 'catalog/product_lookup_by_id/:id';
$u = new Rubricate\Uri\CoreUri($route);
# EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment