diff options
-rw-r--r-- | ext/standard/info.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index 483ab2ff55..c554d42a8f 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -300,7 +300,12 @@ PHPAPI void php_print_info(int flag TSRMLS_DC) php_printf("<title>phpinfo()</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\"></head>", charset); PUTS("<body text=\"#000000\" bgcolor=\"#f0f0ff\" link=\"#0000ff\" vlink=\"#ff00ff\" alink=\"#0000ff\">"); } else { - PUTS("phpinfo()\n"); + PUTS(" _ _ __ ____ \n"); + PUTS(" _ __ | |__ _ __ (_)_ __ / _| ___ / /\\ \\ \n"); + PUTS("| '_ \\| '_ \\| '_ \\| | '_ \\| |_ / _ \\| | | |\n"); + PUTS("| |_) | | | | |_) | | | | | _| (_) | | | |\n"); + PUTS("| .__/|_| |_| .__/|_|_| |_|_| \\___/| | | |\n"); + PUTS("|_| |_| \\_\\/_/ \n\n"); } if (flag & PHP_INFO_GENERAL) { |