PHP code example of helloarman / vardump
1. Go to this page and download the library: Download helloarman/vardump 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/ */
helloarman / vardump example snippets
echo "<pre>";
print_r($data);
echo "</pre>";
die();
echo "<pre>";
print_r($data->toArray());
echo "</pre>";
die();
var_dump($variable);
die();
ar($data)
@ar($data)