php實現共用記憶體進程通訊函數之shm

2020-07-16 10:05:44
前面介紹了php實現共用記憶體的一個函數shmop,也應用到了專案中,不過shmop有局限性,那就是只支援字串型別的;sem經過我的測試,是混合型,支援陣列型別,可以直接儲存,直接獲取,少了多餘的步驟格式轉換。不過sem有大小限制,shmop可以設定很大很大很大~~~不過也可以再php.ini修改相關設定。

<?php
$key = 0x4337b124;  
$shar_key = 1;
// 建立一個共用記憶體
$shm_id = shm_attach($key, 1024, 0666); // resource type
if ($shm_id === false) {
    die('Unable to create the shared memory segment' . PHP_EOL);
}
//設定一個值
shm_put_var($shm_id, $shar_key, 'test');
//刪除一個key
shm_remove_var($shm_id, $shar_key);
//獲取一個值
$value = shm_get_var($shm_id,  $shar_key);
var_dump($value);
//檢測一個key是否存在
var_dump(shm_has_var($shm_id,  $shar_key));
//從系統中移除
shm_remove($shm_id);
//關閉和共用記憶體的連線
shm_detach($shm_id);

注意:$shar_key 只能是 int 型的引數。

詳細說明

shm_attach

開啟建立共用記憶體空間。

語法: int shm_attach(int key, int [memsize], int [perm]);

返回值: 整數

函數種類: 作業系統與環境

內容說明: 本函數用來開啟或者建立共用記憶體空間。引數 key 為這部分的鍵。引數 memsize 可省略,表示所需最小的記憶體空間 (單位為 byte 位組),預設值在 php3.ini 或 php.ini 中的 sysvshm.init_mem 設定,若無設定則為 10000 bytes。引數 perm 亦可省略,為該記憶體空間的使用許可權,預設值為 666。返回值為共用記憶體的ID 值,可供程式使用。

shm_detach

中止共用記憶體空間連結。

語法: int shm_detach(int shm_identifier);

返回值: 整數

函數種類: 作業系統與環境

內容說明: 本函數用來中止與共用記憶體空間的連結。引數 shm_identifier 即為欲停止部分的共用記憶體 ID 值。

shm_remove

清除記憶體空間。

語法: int shm_remove(int shm_identifier);

返回值: 整數

函數種類: 作業系統與環境

內容說明: 本函數用來清除共用記憶體空間的所有資料。引數 shm_identifier 即為欲停止部分的共用記憶體 ID 值。

shm_put_var

加入或更新記憶體空間中的變數。

語法: int shm_put_var(int shm_identifier, int variable_key, mixed variable);

返回值: 整數

函數種類: 作業系統與環境

內容說明: 本函數可用來增加或者修改記憶體空間中變數值。引數 shm_identifier 為欲增加修改的共用記憶體 ID 值。引數 variable_key 為欲增加修改的變數名稱鍵。引數 variable 為變數的內容,變數的型別可以是倍精確數 (double)、整數 (integer)、字串 (string) 或者是陣列 (array)。

shm_get_var

取得記憶體空間中指定的變數。

語法: mixed shm_get_var(int shm_identifier, int variable_key);

返回值: 混合型別資料

函數種類: 作業系統與環境

內容說明: 本函數可用來取得記憶體空間中指定的變數值。引數 shm_identifier 為欲取得的共用記憶體 ID 值。引數 variable_key 為欲取得的變數名稱鍵。返回值即為指定變數鍵的值。

shm_remove_var

刪除記憶體空間中指定的變數。

語法: int shm_remove_var(int id, int variable_key);

返回值: 整數

函數種類: 作業系統與環境

內容說明: 本函數可用來刪除記憶體空間中指定的變數值。引數 shm_identifier 為欲除去的共用記憶體 ID 值。引數 variable_key 為欲刪除的變數名稱鍵。

更多PHP知識,請存取PHP中文網

以上就是php實現共用記憶體進程通訊函數之shm的詳細內容,更多請關注TW511.COM其它相關文章!