Skip to content

repat/php-commandline-bell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Latest Version on Packagist Total Downloads

CommandlineBell

php-commandline-bell makes the ASCII Bell sound or flashes the terminal.

use repat\CommandlineBell;

// flashes screen if possible, otherwise just bell()
CommandlineBell::flash();

// makes a beep sound
CommandlineBell::bell();

Under the hood

// ASCI BEL, see https://en.wikipedia.org/wiki/Bell_character
echo "0x07";

Alternatives