repat/commandline-bell

Makes the ASCII Bell sound or flashes terminal

Maintainers

Package info

github.com/repat/php-commandline-bell

Type:application

pkg:composer/repat/commandline-bell

Statistics

Installs: 17 490

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

0.1 2017-12-29 00:40 UTC

This package is auto-updated.

Last update: 2026-03-01 00:24:21 UTC


README

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