Skip to content

class Urls(...$pathArrays)

micahbaumann edited this page Oct 12, 2022 · 1 revision

Description

The class that contains most of URLS' functionality.

Examples

<?php
/*
URLS framework url config file.

Add your paths here:
ex. $urls->path('blog/', 'blog-home.php');
*/
include 'urls/Urls.php';
Urls::$base = '/';

$urls = new Urls;


$urls->exe();

?>
Clone this wiki locally