7 lines
79 B
PHP
7 lines
79 B
PHP
<?php
|
|
|
|
function urlIs($value)
|
|
{
|
|
return $_SERVER['REQUEST_URI'] === $value;
|
|
}
|