Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

PHP Cond::create() Function



Cond::create() function can create a condition.

Syntax

final public static long Cond::create( void )

Cond::create() function can create a new Condition Variable for a caller.

Cond::create() function doesn't have any parameters and return a handle to a Condition Variable.

Example

<?php
   $cond = Cond::create();
   var_dump($cond);
   Cond::destroy($cond);
?>
php_function_reference.htm
Advertisements