Chilkat • HOME • .NET Core C# • Android™ • AutoIt • C • C# • C++ • Chilkat2-Python • CkPython • Classic ASP • DataFlex • Delphi ActiveX • Delphi DLL • Go • Java • Lianja • Mono C# • Node.js • Objective-C • PHP ActiveX • PHP Extension • Perl • PowerBuilder • PowerShell • PureBasic • Ruby • SQL Server • Swift 2 • Swift 3,4,5... • Tcl • Unicode C • Unicode C++ • VB.NET • VBScript • Visual Basic 6.0 • Visual FoxPro • Xojo Plugin
(PHP ActiveX) Parse a URL into its Component PartsDemonstrates how to parse a URL into it's component parts.
<?php // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Url') $url = new COM("Chilkat.Url"); $urlStr = 'https://www.amazon.com/Anarchy-State-Utopia-Robert-Nozick/dp/0465051006/ref=sr_1_1?s=books&ie=UTF8&qid=1430344305&sr=1-1&keywords=nozick#frag123'; $success = $url->ParseUrl($urlStr); // Assume success.. print 'URL: ' . $urlStr . "\n"; print 'Host: ' . $url->Host . "\n"; print 'Port: ' . $url->Port . "\n"; print 'HostType: ' . $url->HostType . "\n"; print 'Ssl: ' . $url->Ssl . "\n"; print 'Path: ' . $url->Path . "\n"; print 'Query: ' . $url->Query . "\n"; print 'Frag: ' . $url->Frag . "\n"; print '----' . "\n"; $urlStr = 'http://matt:secret@www.chilkatsoft.com:8080/somepath.asp?test=123&size=2'; $success = $url->ParseUrl($urlStr); // Assume success.. print 'URL: ' . $urlStr . "\n"; print 'Host: ' . $url->Host . "\n"; print 'Port: ' . $url->Port . "\n"; print 'HostType: ' . $url->HostType . "\n"; print 'Ssl: ' . $url->Ssl . "\n"; print 'Login: ' . $url->Login . "\n"; print 'Password: ' . $url->Password . "\n"; print 'Path: ' . $url->Path . "\n"; print 'Query: ' . $url->Query . "\n"; print 'Frag: ' . $url->Frag . "\n"; ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.