PHP Classes

File: system/dependencies/unreal4u/debug-info/src/auxiliar-functions.php

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/unreal4u/debug-info/src/auxiliar-functions.php   Download  
File: system/dependencies/unreal4u/debug-info/src/auxiliar-functions.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: dFramework
Framework to build PHP applications
Author: By
Last change:
Date: 4 years ago
Size: 1,032 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::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();
}