PHP code example of protoqol / quo-php
1. Go to this page and download the library: Download protoqol/quo-php 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/ */
protoqol / quo-php example snippets
_id = 42;
$user = [
'id' => 1,
'username' => 'jdoe'
];
// Dump a single variable
quo($user_id);
// Dump multiple variables at once
quo($user_id, $user);
// Some quick maths
quo(42 * 42);
bash
composer