Answers for "php url segment"

PHP
0

get url segment in php

$uri_path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$uri_segments = explode('/', $uri_path);

echo $uri_segments[0]; // for www.example.com/user/account you will get 'user'
Posted by: Guest on March-13-2020

Browse Popular Code Answers by Language