コード例 #1
0
ファイル: master.php プロジェクト: nat3738/php_threads
<?php

if (!extension_loaded('threads')) {
    dl('threads.so');
}
$array = array(0 => 'thread', 1 => 'hello', 2 => 'world');
thread_set('mySharedVar', $array);
echo "MASTER: Starting new thread\n";
//thread_start('thread');
thread_include(dirname(__FILE__) . '/thread.php');
echo "MASTER: Done!\n";
function thread()
{
    echo "In Threads! \n";
}
コード例 #2
0
ファイル: master.php プロジェクト: rathwamukesh/php_threads
<?php

if (!extension_loaded('threads')) {
    dl('threads.so');
}
$array = array(0 => 'thread', 1 => 'hello', 2 => 'world');
thread_set('mySharedVar', $array);
thread_include('thread.php');
sleep(3);
echo 'Done';