wp-cli / php-cli-tools

A collection of tools to help with PHP command line utilities
MIT License
671 stars 117 forks source link

Feature Request: Horizontal Rule #133

Closed DarkAxi0m closed 6 years ago

DarkAxi0m commented 6 years ago

Just a thought, but it would be handy to have something like HTML's <hr/> e.g. cli\hr($msg)

'MESSAGE STRING' '-----------------------------------------'

schlessera commented 6 years ago

Thanks for the request, @DarkAxi0m !

However, I don't think this is something that should be part of the library, as in general, decorative elements like this cause more harm than good. They don't properly adapt if they change the screen size, and serve no actual purpose.

I'll close this request, but in case you need this for your own purpose, you can easily build it yourself like this:

$msg = 'Some kind of message';
cli\line( $msg );
cli\line( str_repeat( '-', strlen( $msg ) ) );