downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Cond::destroy> <Cond::broadcast
[edit] Last updated: Fri, 07 Jun 2013

view this page in

Cond::create

(PECL pthreads >= 0.34)

Cond::createCreate a Condition

Descripción

final public static long Cond::create ( void )

Creates a new Condition Variable for the caller.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

A handle to a Condition Variable

Ejemplos

Ejemplo #1 Condition Creation and Destruction

<?php
/** You cannot use the "new" keyword, a Cond is not a PHP object **/
$cond Cond::create();
/** You can now use the Cond in any context **/
var_dump($cond);
/** Always destroy Cond you have created **/
Cond::destroy($cond);
?>

El resultado del ejemplo sería:

int(4540682)



add a note add a note User Contributed Notes Cond::create - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites