Files
oc-server3/htdocs/lib2/cli.class.php
2012-08-16 21:04:13 +02:00

40 lines
636 B
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
***************************************************************************/
$cli = new cli();
class cli
{
function out($str)
{
echo $str . "\n";
}
function debug($str)
{
global $opt;
if (($opt['debug'] & DEBUG_CLI) == DEBUG_CLI)
echo 'DEBUG: ' . $str . "\n";
}
function warn($str)
{
echo 'WARN: ' . $str . "\n";
}
function error($str)
{
echo 'ERROR: ' . $str . "\n";
}
function fatal($str)
{
echo 'FATAL: ' . $str . "\n";
exit;
}
}
?>