PHP Velho Oeste 2024

ncurses_beep

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0)

ncurses_beepFace ca terminalul să emită un semnal sonor

Descrierea

ncurses_beep ( ) : int
Avertizare

Această funcție este EXPERIMENTALĂ. Comportamentul acestei funcții, denumirea sa și orice alte aspecte documentate în privința acestei funcții pot să fie modificate fără preaviz într-o versiune viitoare a PHP. Utilizați această funcție la propriul risc.

ncurses_beep() transmite o alertă audibilă (bell) și dacă aceasta nu este posibil, sclipește ecranul.

A se vedea și

add a note add a note

User Contributed Notes 2 notes

up
5
arplynn at gmail dot com
18 years ago
If you want to make the terminal beep on a PHP CLI application without needing the ncurses library, use the following code:

<?php

function cli_beep()
{
    echo
"\x07";
}

?>
up
0
divinity76 at gmail dot com
5 years ago
arplynn's function has a subtle bug, if it's being called while ob_start()'s output buffering is active, it does not make the system beep, and worse, it may corrupt whatever data is being generated under OB, by inserting an unprintable ascii character in it. use fprintf to STDOUT to bypass OB, eg

<?php
function cli_beep() {
   
fprintf ( STDOUT, "%s", "\x07" );
}
To Top