Cond::create

(PECL pthreads < 3.0.0)

Cond::create����һ����������

Warning

pthreads v3 ���Ѿ��� Cond ���Ƴ���

˵��

final public static Cond::create ( void ) : int

����һ������������

����

�˺���û�в�����

����ֵ

ָ�����������ľ����

����

Example #1 ���������Ĵ���������

<?php
/** ������ʹ�� new �ؼ��֣���Ϊ Cond ���� PHP ���� **/
$cond Cond::create();
/** ����������������߳���������ʹ�ô��������� **/
var_dump($cond);
/** ��Զ��Ҫ���������㴴������������ **/
Cond::destroy($cond);
?>

�������̻������

int(4540682)