mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@13186 201d5d3c-b55e-5fd7-737f-ddc643e51545
26 lines
648 B
PHP
26 lines
648 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
if(!defined('__DEBUG__')) define('__DEBUG__', 1);
|
|
if(!defined('__XE__')) define('__XE__', true);
|
|
if(!defined('__ZBXE__')) define('__ZBXE__', true);
|
|
if(!defined('_XE_PATH_')) define('_XE_PATH_', realpath(dirname(__FILE__).'/../').'/');
|
|
|
|
$_SERVER['SCRIPT_NAME'] = '/xe/index.php';
|
|
error_reporting(E_ALL & ~E_NOTICE);
|
|
|
|
/**
|
|
* Print out the message
|
|
**/
|
|
function _log($msg) {
|
|
$args = func_get_args();
|
|
|
|
foreach($args as $arg) {
|
|
fwrite(STDOUT, "\n");
|
|
fwrite(STDOUT, print_r($arg, true));
|
|
}
|
|
fwrite(STDOUT, "\n");
|
|
}
|
|
|
|
/* End of file Bootstrap.php */
|
|
/* Location: ./tests/Bootstrap.php */
|