PHP code example of quiec / php-tidal
1. Go to this page and download the library: Download quiec/php-tidal 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/ */
quiec / php-tidal example snippets
bash
$ composer
php
l\TidalAPI;
$tidal = new TidalAPI();
$tidal->logIn("user", "pass");
$ara = $tidal->search("istanbul");
foreach ($ara as $sonuc) {
echo $sonuc["artist"]["name"] . " - " . $sonuc["title"] . "\n";
}