Test in console:
php -r 'echo "\033[31mTEST\0330m'
Test in php file:
echo "\033[32mTEST\033[0m" . PHP_EOL;
Remember to use quotation mark instead of apostrophe.
You can set foreground and background colors.
Color codes:
FG code | BG code | Color |
30 | 40 | Black |
31 | 41 | Red |
32 | 42 | Green |
33 | 43 | Yellow |
34 | 44 | Blue |
35 | 45 | Magenta |
36 | 46 | Cyan |
37 | 47 | White |
90 | 100 | Bright Black (Gray) |
91 | 101 | Bright Red |
92 | 102 | Bright Green |
93 | 103 | Bright Yellow |
94 | 104 | Bright Blue |
95 | 105 | Bright Magenta |
96 | 106 | Bright Cyan |
97 | 107 | Bright White |