zoukankan      html  css  js  c++  java
  • PHP IPC函数介绍共享内存

    以下是php的共享内存常用函数,用于进程间的通信

    shm_attach — Creates or open a shared memory segment
    shm_detach — Disconnects from shared memory segment
    shm_get_var — Returns a variable from shared memory
    shm_has_var — Check whether a specific entry exists
    shm_put_var — Inserts or updates a variable in shared memory
    shm_remove_var — Removes a variable from shared memory
    shm_remove — Removes shared memory from Unix systems

    $msg_key=1;
    $ipc_key=ftok(__FILE__,'t');
    $seg=shm_attach($ipc_key,1024,0600); //创建或打开一个共享内存段
    if(!$seg){
         die('create or open shared memory segment failed!');
    }
    shm_put_var($seg,$msg_key,'hello world');
    if(shm_has_var($seg,$msg_key)){
       $content=shm_get_var($seg,$msg_key);
       echo $content;
    }
    shm_remove_var($seg,$msg_key);
    shm_remove($seg);
                  

    输出:hello world

  • 相关阅读:
    2021年4月28日
    2021年4月18日
    2021年3月4日
    2020年11月20日
    20201112
    ThreadLocal原理分析
    git与gitlab
    DevOps与CICD简介
    代码扫描利器sonarqube
    看完小白也会使用,Android投屏神器scrcpy详细教程
  • 原文地址:https://www.cnblogs.com/xiazh/p/2783040.html
Copyright © 2011-2022 走看看