PHP 8.5.0 Alpha 4 available for testing

Voting

: min(four, zero)?
(Example: nine)

The Note You're Voting On

abk at avatartechnology dot com
21 years ago
Thanks to [email protected] who got this in turn from linux glibc 2.3.2: http://www.php.net/manual/en/function.shmop-open.php -- I'm putting this here because it might be helpful to others.

function ftok($pathname, $proj_id) {
$st = @stat($pathname);
if (!$st) {
return -1;
}

$key = sprintf("%u", (($st['ino'] & 0xffff) | (($st['dev'] & 0xff) << 16) | (($proj_id & 0xff) << 24)));
return $key;
}

<< Back to user notes page

To Top