-
Notifications
You must be signed in to change notification settings - Fork 10
Doc » How to use
Bart van Hoekelen edited this page Apr 20, 2017
·
3 revisions
// Print red text
echo terminal_style('Here your text', 'red');Use can use: default, yellow, red, green, light-gray ...
See the full color name list here
// Print text with background red
echo terminal_style('Here your text', null, 'red');Use can use: default, yellow, red, green, light-gray ...
See the full background color name list here
// Print text in bold
echo terminal_style('Here your text', null, null,'bold');Use can use: default, bold , dim, italic, underlined, 'blink' ...
See the full text style name list here
// Print text color red, background green and text style bold
echo terminal_style('Here your text', 'red', 'green','bold');Return to wiki home page