PHP code example of bristol-digital / spanish-dances

1. Go to this page and download the library: Download bristol-digital/spanish-dances 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/ */

    

bristol-digital / spanish-dances example snippets




ristolDigital\SpanishDance\SpanishDance;

$spanishDance = new SpanishDance();

// Display hello world with a random Spanish dance
echo $spanishDance->sayHello();
// Output: ¡Hola Mundo! Let's dance the Flamenco! 💃

$dance = $spanishDance->getRandomDance();
echo "Let's dance the {$dance}!";

$allDances = $spanishDance->getAllDances();
print_r($allDances);
bash
php example.php