|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-11-15 10:53 UTC] pajoye@php.net
-Status: Open
+Status: Bogus
[2010-11-15 10:53 UTC] pajoye@php.net
[2010-11-15 10:54 UTC] rasmus@php.net
-Status: Bogus
+Status: Wont fix
[2010-11-15 10:54 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 23:00:01 2025 UTC |
Description: ------------ Hi sir: I am a php programmer work in php area for more than 3 years.i have a suggestion about threading for you. i found than php doesn't support threading. could you develop threading in the new version? i think the threading will like this: <?php using namespace Php.Threading; class MyThread extends Thread { public $num; public function __construct() { } public function run() { echo $num . "\n"; } } $thread1 = new MyThread(); $thread2 = new MyThread(); $thread1->start(); $thread2->start(); ?> Yang Qing-rong http://www.wudimei.com