. // /////////////////////////////////////////////////////////////////////// define('GREEN_BEGIN', "\033[01;32m"); define('YELLOW_BEGIN', "\033[01;33m"); define('RED_BEGIN', "\033[01;31m"); define('COLOR_END', "\033[00m"); function echo_green($text) { echo GREEN_BEGIN . "$text" . COLOR_END . "\n"; } function echo_yellow($text) { echo YELLOW_BEGIN . "$text" . COLOR_END . "\n"; } function die_red($text) { die(RED_BEGIN . "$text" . COLOR_END . "\n"); } ?>