How can I refine PHP sub-string and chop functions

79 Views Asked by At

I have the PHP code below, so my question is how can I refine it?

$slug                   = $_SERVER['REQUEST_URI'];
$myslug                 = substr($slug, 4);
$new_slug               = chop($myslug,"?lang=fr");
1

There are 1 best solutions below

0
Mihai Aurelian On BEST ANSWER

You could eliminate all those variables.

$slug = chop(substr($_SERVER['REQUEST_URI'], 4),"?lang=fr");