PHP Classes

File: src/unreal4u/auxiliar-functions.php

Recommend this page to a friend!
  Classes of Camilo Sperberg   Debug Info   src/unreal4u/auxiliar-functions.php   Download  
File: src/unreal4u/auxiliar-functions.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Debug Info
Output information about variables and other data
Author: By
Last change: Update of src/unreal4u/auxiliar-functions.php
Date: 2 months ago
Size: 1,361 bytes
 

Contents

Class file image Download
<?php

/**
 * Implements debugInfo::debug as a function
 *
 * @see debugInfo::debug()
 * @param unknown $a
 * @param string $print
 * @param string $message
 * @return Ambigous <string, boolean>
 */
function debug($a, $print=true, $message='') {
    return
unreal4u\debugInfo::debug($a, $print, $message);
}

/**
 * Implements debugInfo::debugFile as a function
 *
 * @see debugInfo::debugFile()
 * @param string $message
 * @param string $filename
 * @param string $directory
 * @return Ambigous <boolean, number>
 */
function debugFile($message='', $filename='', $directory='') {
    return
unreal4u\debugInfo::debugFile($message, $filename, $directory);
}

/**
 * Implements debugInfo::debugFirePHP as a function
 *
 * @see debugInfo::debugFirePHP
 * @param unknown $a
 * @param string $print
 * @param string $message
 * @return Ambigous <string, boolean>
 */
function debugFirePHP($a, $print=false, $message='') {
    return
unreal4u\debugInfo::debugFirePHP($a, $print, $message);
}

/**
 * Implements debugInfo::throwExceptions as a function
 *
 * @see debugInfo::throwExceptions()
 */
function throwExceptions() {
    return
unreal4u\debugInfo::throwExceptions();
}

/**
 * Implements debugInfo::getExactTime as a function
 *
 * @see debugInfo::getExactTime
 * @return float
 */
function getExactTime() {
    return
unreal4u\debugInfo::getExactTime();
}