Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

event_del(3) [php man page]

EVENT_DEL(3)								 1							      EVENT_DEL(3)

event_del - Remove an event from the set of monitored events

SYNOPSIS
bool event_del (resource $event) DESCRIPTION
Cancels the $event. PARAMETERS
o $event - Valid event resource. RETURN VALUES
event_del(3) returns TRUE on success or FALSE on error. PHP Documentation Group EVENT_DEL(3)

Check Out this Related Man Page

NCURSES_GETMOUSE(3)							 1						       NCURSES_GETMOUSE(3)

ncurses_getmouse - Reads mouse event

SYNOPSIS
bool ncurses_getmouse (array &$mevent) DESCRIPTION
Warning This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. ncurses_getmouse(3) reads mouse event out of queue. PARAMETERS
o $mevent - Event options will be delivered in this parameter which has to be an array, passed by reference (see example below). On success an associative array with following keys will be delivered: o "id" : Id to distinguish multiple devices o "x" : screen relative x-position in character cells o "y" : screen relative y-position in character cells o "z" : currently not supported o "mmask" : Mouse action RETURN VALUES
Returns FALSE if a mouse event is actually visible in the given window, otherwise returns TRUE. EXAMPLES
Example #1 ncurses_getmouse(3) example <?php switch (ncurses_getch()){ case NCURSES_KEY_MOUSE: if (!ncurses_getmouse($mevent)){ if ($mevent["mmask"] & NCURSES_MOUSE_BUTTON1_PRESSED){ $mouse_x = $mevent["x"]; // Save mouse position $mouse_y = $mevent["y"]; } } break; default: /* .... */ } ?> SEE ALSO
ncurses_ungetmouse(3). PHP Documentation Group NCURSES_GETMOUSE(3)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

having problem with FTP

Hi all, I am facing a problem .The problem is in my shell script i am fetching some file from a remote machine by writing a script for GET.after getting a file from a remote machine i am closing the connection because i will do some operations on the file received .after successfully completing... (3 Replies)
Discussion started by: arunava_maity
3 Replies

2. Solaris

Shutdown the package in SUN cluster

Hi, I have a SUN cluster system. I want to know what script do when the SUN cluster shutdown the package as I may need to modify it ?? Where can I find out this information in the system?? In which directory and log file ??? Any suggestion ??? (5 Replies)
Discussion started by: chuikingman
5 Replies

3. UNIX for Dummies Questions & Answers

File permissions

What command can i use to make sure that i cannot delete a file called backup (which i own) without affecting other permissions? seems simple dont know how i forgot. :mad: ---------- Post updated at 07:59 PM ---------- Previous update was at 06:34 PM ---------- anyone ??? ----------... (6 Replies)
Discussion started by: ink
6 Replies

4. UNIX for Dummies Questions & Answers

How to move files based on filetype and time created?

Hi, I'm trying to improve my Unix skills and I'm wondering what is the best way to move some files based on filetype and attributes like time created? For instance, lets suppose I have a directory with many different files in it and I'd like to move all the jpgs that were created between May... (6 Replies)
Discussion started by: LuckyTommy
6 Replies

5. Solaris

After power failure, SunFireV240 with SOLARIS 5.9 cannot start

SUNW, Sun Fire V240 Spare Sun OS Release 5.9 After a power failure we try to start the server We have the following messages: Thanks for your assistance (7 Replies)
Discussion started by: doudou2012
7 Replies

6. Solaris

No network cable But Network interface is UP and Running

I've one Netra 240 After changing main board and system configuration card reader, Network is not accessible any more, Network interfaces are always UP and Running even when there is no cable connected to Network interfaces. I tried to restart and plumb/unplumb with no luck. ifconfig -a... (7 Replies)
Discussion started by: samer.odeh
7 Replies