6 lines
124 B
PHP
6 lines
124 B
PHP
|
<?php
|
||
|
function smarty_modifier_noscheme($url) {
|
||
|
$info = parse_url($url);
|
||
|
return '//'.$info['host'].$info['path'];
|
||
|
}
|