PHP はデフォルトではマルチスレッドをサポートしていません。マルチスレッドを使用するには、pthread 拡張機能をインストールする必要があります。pthread 拡張機能をインストールするには、--enable-maintainer-zts パラメータを使用して PHP を再コンパイルする必要があります。これはパラメータは、PHP をコンパイルするときにスレッド セーフの使用を指定します。
<?php if(function_exists('date_default_timezone_set')) { date_default_timezone_set('PRC'); } function a() { $time = time(); sleep(3); $fp = fopen('result_a'.$time.'.log', 'w'); fputs($fp, 'Set in ' . Date('h:i:s', time()) . (double)microtime() . "rn"); fclose($fp); } function b() { $time = time(); sleep(3); $fp = fopen('result_b'.$time.'.log', 'w'); fputs($fp, 'Set in ' . Date('h:i:s', time()) . (double)microtime() . "rn"); fclose($fp); } if(!isset($_GET['act'])) $_GET['act'] = 'a'; if($_GET['act'] == 'a') { a(); } else if($_GET['act'] == 'b') b(); ?>
上記のコードは、ファイルをローカルに書き込みます。
PHP マルチスレッドのファイルの読み取りおよび書き込み:
localhost/a.php にアクセスし、できるだけ早く 2 つのブラウザー タブを開くと、次のような違いがあることがわかります。 2 つのファイルの作成時間は 3 秒です。
しかし、localhost/a.php?act=b にアクセスし、別の visit/a.php?act=a にアクセスすると、 2 つのファイルはほぼ同じです。
Apache の場合、同じ URL はスレッド (またはプロセス) を意味しますが、異なる URL は同時実行できることを意味します。
php 内にダウンロード アクションがある場合
function runThread() { down("http://localhost/test/a.php?act=a"); } if($_GET['act'] == 'run') { echo 'start:'; runThread(); echo ' End'; }
http://localhost/test/a.php?act=run
http://localhost/test/ a .php?act=run&s=2
メインアクセスのURLが異なる限り、別のプロセスとみなされ、同時実行が行われます。ファイルの作成時間は 3 秒ではありません
ローカル Linux サーバーを持っている友人は、Linux を使用して同時実行をシミュレートすることもできます
<?php for ($i=0;$i<10;$i++) { echo $i; sleep(5); } ?>
上記を test.php に保存し、SHELL コードを記述します
#!/bin/bash for i in 1 2 3 4 5 6 7 8 9 10 do php -q test.php & done Fixed a bug where :doc:`Image Manipulation Library <libraries/image_lib>` didn't escape image source paths passed to ImageMagick as shell arguments. Fixed a bug (#861) - :doc:`Database Forge <database/forge>` method create_table() incorrectly accepts field width constraints for mssql/SQLSRV integer-type columns. Fixed a bug (#4562) - :doc:`Cache Library <libraries/caching>` didn't check if Memcached::quit() is available before calling it. Fixed a bug (#4563) - :doc:`Input Library <libraries/input>` method request_headers() ignores $xss_clean parameter value after first call. Fixed a bug (#4605) - :doc:`Config Library <libraries/config>` method site_url() stripped trailing slashes from relative URIs passed to it. Fixed a bug (#4613) - :doc:`Email Library <libraries/config>` failed to send multiple emails via SMTP due to "already authenticated" errors when keep-alive is enabled. Fixed a bug (#4633) - :doc:`Form Validation Library <libraries/form_validation>` ignored multiple "callback" rules for empty, non-required fields. Fixed a bug (#4637) - :doc:`Database <database/index>` method error() returned FALSE with the 'oci8' driver if there was no error. Fixed a bug (#4647) - :doc:`Query Builder <database/query_builder>` method count_all_results() doesn't take into account GROUP BY clauses while deciding whether to do a subquery or not. Fixed a bug where
関連する推奨事項:
以上がPHP はマルチスレッド同時実行をどのように実装しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。