Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gearmanworker(3) [php man page]

GEARMANWORKER(3)							 1							  GEARMANWORKER(3)

The GearmanWorker class

INTRODUCTION
CLASS SYNOPSIS
GearmanWorker GearmanWorker Methods o public bool GearmanWorker::addFunction (string $function_name, callable $function, [mixed &$context], [int $timeout]) o public bool GearmanWorker::addOptions (int $option) o public bool GearmanWorker::addServer ([string $host = 127.0.0.1], [int $port = 4730]) o public bool GearmanWorker::addServers (string $servers = 127.0.0.1:4730) o public void GearmanWorker::clone (void ) o public GearmanWorker::__construct (void ) o public bool GearmanWorker::echo (string $workload) o public string GearmanWorker::error (void ) o public int GearmanWorker::getErrno (void ) o public int GearmanWorker::options (void ) o public bool GearmanWorker::register (string $function_name, [int $timeout]) o public bool GearmanWorker::removeOptions (int $option) o public int GearmanWorker::returnCode (void ) o public bool GearmanWorker::setId (string $id) o public bool GearmanWorker::setOptions (int $option) o public bool GearmanWorker::setTimeout (int $timeout) o public int GearmanWorker::timeout (void ) o public bool GearmanWorker::unregister (string $function_name) o public bool GearmanWorker::unregisterAll (void ) o public bool GearmanWorker::wait (void ) o public bool GearmanWorker::work (void ) PHP Documentation Group GEARMANWORKER(3)

Check Out this Related Man Page

SPLDOUBLYLINKEDLIST(3)							 1						    SPLDOUBLYLINKEDLIST(3)

The SplDoublyLinkedList class

INTRODUCTION
The SplDoublyLinkedList class provides the main functionalities of a doubly linked list. CLASS SYNOPSIS
SplDoublyLinkedList SplDoublyLinkedListIteratorArrayAccessCountable Methods o public SplDoublyLinkedList::__construct (void ) o public void SplDoublyLinkedList::add (mixed $index, mixed $newval) o public mixed SplDoublyLinkedList::bottom (void ) o public int SplDoublyLinkedList::count (void ) o public mixed SplDoublyLinkedList::current (void ) o public int SplDoublyLinkedList::getIteratorMode (void ) o public bool SplDoublyLinkedList::isEmpty (void ) o public mixed SplDoublyLinkedList::key (void ) o public void SplDoublyLinkedList::next (void ) o public bool SplDoublyLinkedList::offsetExists (mixed $index) o public mixed SplDoublyLinkedList::offsetGet (mixed $index) o public void SplDoublyLinkedList::offsetSet (mixed $index, mixed $newval) o public void SplDoublyLinkedList::offsetUnset (mixed $index) o public mixed SplDoublyLinkedList::pop (void ) o public void SplDoublyLinkedList::prev (void ) o public void SplDoublyLinkedList::push (mixed $value) o public void SplDoublyLinkedList::rewind (void ) o public string SplDoublyLinkedList::serialize (void ) o public void SplDoublyLinkedList::setIteratorMode (int $mode) o public mixed SplDoublyLinkedList::shift (void ) o public mixed SplDoublyLinkedList::top (void ) o public void SplDoublyLinkedList::unserialize (string $serialized) o public void SplDoublyLinkedList::unshift (mixed $value) o public bool SplDoublyLinkedList::valid (void ) PHP Documentation Group SPLDOUBLYLINKEDLIST(3)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

making shellvariables public to child processes

Hi, I'm looking for a possibility to make variables of the shell public to child processes. Usually I would try set -a but an error message appears: ./decrypt.pgm: -a^M: bad option(s) where decrypt.pgm is the name of the shell script. Any help welcome! Cheers Martin (2 Replies)
Discussion started by: martinn
2 Replies

2. Shell Programming and Scripting

how to echo the file contents LINE BY LINE

hello, i have a listing (let say ABC) consists of the below: : public database link public synonym role rollback segment : when i run the below for loop, for i in `more ABC` do echo "$i" done it gives me, : public database (4 Replies)
Discussion started by: newbie168
4 Replies

3. Programming

parsing a string to check if it's an IP address

Hello everybody! I woul quickly need a function bool ParseIPString(char*) that parses a string to check if it's in IP format. thanks in advance for any help! best regards, nadiamihu (1 Reply)
Discussion started by: nadiamihu
1 Replies