PHP 8.5.0 Alpha 2 available for testing

Voting

: max(two, four)?
(Example: nine)

The Note You're Voting On

joeldg at listbid.com
22 years ago
<?
// thanks to
// http://www.ecst.csuchico.edu/~beej/guide/ipc/shmem.html
$SHM_KEY = ftok("/home/joeldg/homeymail/shmtest.php", 'R');
$shmid = sem_get($SHM_KEY, 1024, 0644 | IPC_CREAT);
$data = shm_attach($shmid, 1024);

$data = "test";
printf("shared contents: %s\n", $data);

shm_detach($data);
?>

<< Back to user notes page

To Top