PHP code example of humans / when

1. Go to this page and download the library: Download humans/when 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/ */

    

humans / when example snippets


echo when(true)->return('is-open');
// "is-open"

echo when(false)->return('is-open'); // prints null
// null

echo when(false)->return('is-open')->else('is-closed');
// "is-closed"

echo when(true)->is(false)->return('is true')->else('is false');

when($product)->isOutOfStock()->return('is out of stock');

when($product)->is_available->return('is available');

when();

unless();