Tags
PHP , Url
Asked 2 years ago
10 Aug 2021
Views 361
Pearline

Pearline posted

How parse URL in PHP ?

How parse URL in PHP ?
kiran

kiran
answered Nov 30 '21 00:00

parse_url() function can be used to parse the url in the PHP


$url="https://arrayoverflow.com/";
 print_r(parse_url($url));
Post Answer