PHP Extension
PHP Extension
Example: Http.GetUrlPath method
Demonstrates theGetUrlPath method.
Chilkat PHP Extension Downloads
<?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
?>