PHP Velho Oeste 2024

pht\Thread::start

(PECL pht >= 0.0.1)

pht\Thread::startStarts the new thread

Açıklama

public pht\Thread::start ( ) : void

This will cause a new thread to be spawned for the associated pht\Thread object, where its internal task queue will begin to be processed.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

No return value.

Örnekler

Örnek 1 Starting a new thread

<?php

use pht\Thread;

$thread = new Thread();

$thread->start();
$thread->join();

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top