steampixel / simplePHPRouter

This is a simple and small single class PHP router that can handel the whole url routing for your project.
MIT License
406 stars 117 forks source link

multilanguage router #54

Closed sanater closed 2 years ago

sanater commented 2 years ago

Hi, how can i multi language router this class?

site.com/en site.com/tr site.com/fr

steampixel commented 2 years ago

Hi, what about something like this (untested):

Route::add('/([a-z]*)/([a-z-0-9-]*)', function($lang, $page) {
    echo 'Load page '.$page.' with language code '.$lang;
});
sanater commented 2 years ago

thank you

sanater commented 2 years ago

how can i assign variable for default language?

sanater commented 2 years ago

please sample or demo full page?