9 lines
145 B
PHP
9 lines
145 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if (!function_exists('redirect')) {
|
||
|
|
function redirect(string $url): void {
|
||
|
|
header('Location: ' . $url);
|
||
|
|
exit;
|
||
|
|
}
|
||
|
|
}
|