ncurses_beep

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

ncurses_beepLet the terminal beep

Описание

int ncurses_beep ( void )
Внимание

Эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ. Поведение этой функции, ее имя и относящаяся к ней документация могут измениться в последующих версиях PHP без уведомления. Используйте эту функцию на свой страх и риск.

ncurses_beep() sends an audible alert (bell) and if its not possible flashes the screen.

Смотрите также

Коментарии

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";
}

?>
2006-01-21 14:17:17
http://php5.kiev.ua/manual/ru/function.ncurses-beep.html
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" );
}
2018-06-16 00:36:12
http://php5.kiev.ua/manual/ru/function.ncurses-beep.html

    Поддержать сайт на родительском проекте КГБ