Page MenuHomeDevCentral

core.php
No OneTemporary

core.php

<?php
namespace Keruald;
/**
* Keruald, core libraries for Pluton and Xen engines.
*
* Global functions
*/
/**
* Prints human-readable information about a variable, wrapped in a <pre> block
*
* @param mixed $variable the variable to dump
*/
function dprint_r ($variable) {
echo '<pre>';
print_r($variable);
echo '</pre>';
}
/**
* Prints human-readable information about a variable, wrapped in a <pre> block
* then dies
*
* @param mixed $variable the variable to dump
*/
function dieprint_r ($variable) {
dprint_r($variable);
die;
};

File Metadata

Mime Type
text/x-php
Expires
Sat, Mar 7, 02:46 (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3469534
Default Alt Text
core.php (574 B)

Event Timeline