Sample code for 30+ languages & platforms
PHP Extension

Example: Http.GetUrlPath method

Demonstrates the GetUrlPath method.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$success = false;

$http = new CkHttp();
$url = 'https://example.com/folder/page?lang=en&sort=asc#section2';
print $http->getUrlPath($url) . "\n";

// Output:

// /folder/page

?>