8 lines
153 B
PHP
8 lines
153 B
PHP
<?php
|
|
function getBeforeSlash($input) {
|
|
$input = str_replace("/141", "", $input);
|
|
$input = str_replace("/111", "", $input);
|
|
return $input;
|
|
}
|
|
?>
|