PHP Velho Oeste 2024

newt_form_watch_fd

(PECL newt >= 0.1)

newt_form_watch_fd

Beschreibung

newt_form_watch_fd ( resource $form , resource $stream [, int $flags ] ) : void
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

form

stream

flags

Rückgabewerte

Es wird kein Wert zurückgegeben.

add a note add a note

User Contributed Notes 1 note

up
0
jakub dot holdys at fancyfon dot com
14 years ago
There is no special function to remove FD from watch. When I closed stream added to be watch, my script hanged.
<?php newt_form_watch_fd($form, $old_fd, 0); ?> seems to be solution of this issue.
To Top