PHP code example of joseraul / nasdaq-crawler
1. Go to this page and download the library: Download joseraul/nasdaq-crawler 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/ */
joseraul / nasdaq-crawler example snippets
$client = new NasdaqCrawler\Client();
$data = $client->ftp()->path('SymbolDirectory/nasdaqlisted.txt');
print_r($data);
$client = new NasdaqCrawler\Client();
$data = $client->ftp()->nasdaqlisted();
print_r($data);