PHP code example of thestormwinter / cap
1. Go to this page and download the library: Download thestormwinter/cap library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thestormwinter / cap example snippets
use theStormWinter\CAP\Cap;
// find Url where is cap file uploaded
$url = "http://portal.chmi.cz/files/portal/docs/meteo/om/bulletiny/XOCZ50_OKPR.xml";
// create new instance of Cap
$cap = new Cap;
// download the file
$file = $cap->read($url);