本文實例講述了php進程(線程)通信基礎之System V共享內存。分享給大家供大家參考,具體如下:
PHP默認情況沒有開啟功能,要支持該功能在編譯PHP的時候要加入下面幾個選項 System V消息,--enable-sysvmsg System V信號量支持,--enable-sysvsem System V共享內存支持,--enable-sysvshm
PHP還挺shmop共享內存,在編譯的時候開啟 --enable-shmop
System V共享內存的相關函數(shù):
1: 創(chuàng)建信號量唯一標識符
$ftok = ftok(__FILE__, 'a');
2: 創(chuàng)建共享內存端
$id = shm_attach ( $ftok, 1000 , 0666 )
3: 斷開與共享內存段的連接
4: 獲取一個變量值
$val = shm_get_var ( $id , $key )
5: 檢測變量是否存在
shm_has_var ( $id , $key )
6: 添加一個值到共享內存里
shm_put_var ( $id , $key , $val )
7: 從共享內存中刪除一個變量
shm_remove_var ( $id , $key )
8: 從系統(tǒng)中刪除共享內存
?php
$tmp = tempnam(__FILE__, 'PHP');
$key = ftok($tmp, 'a');
$shmid = shm_attach($key);
$counter = 0;
shm_put_var( $shmid, 1, $counter );
class CounterThread extends Thread {
public $shmid;
public $is_runing = true;
public function __construct($shmid){
$this->shmid = $shmid;
}
public function run() {
$counter = shm_get_var( $this->shmid, 1 );
$counter++;
shm_put_var( $this->shmid, 1, $counter );
printf("Thread #%lu says: %s\n", $this->getThreadId(),$counter);
}
}
for ($i=0;$i10;$i++){
$threads[] = new CounterThread($shmid);
}
for ($i=0;$i10;$i++){
$threads[$i]->start();
}
for ($i=0;$i10;$i++){
$threads[$i]->join();
}
shm_remove( $shmid );
shm_detach( $shmid );
更多關于PHP相關內容感興趣的讀者可查看本站專題:《PHP進程與線程操作技巧總結》、《PHP網(wǎng)絡編程技巧總結》、《PHP基本語法入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。
您可能感興趣的文章:- 淺談并發(fā)處理PHP進程間通信之外部介質
- PHP如何限制定時任務的進程數(shù)量
- PHP基于進程控制函數(shù)實現(xiàn)多線程
- 一文看懂PHP進程管理器php-fpm
- php 的多進程操作實踐案例分析
- php 多進程編程父進程的阻塞與非阻塞實例分析
- php實現(xiàn)的簡單多進程服務器類完整示例
- PHP 進程池與輪詢調度算法實現(xiàn)多任務的示例代碼
- 淺談并發(fā)處理PHP進程間通信之System V IPC