getmypid
Description
Gets PHP's process ID
Syntax
getmypid(): int|false
Return
Returns the current PHP process ID, or false on error.
Examples
1
<? $return = getmypid(); var_export($return); ?>
12345
Gets PHP's process ID
getmypid(): int|false
Returns the current PHP process ID, or false on error.
<? $return = getmypid(); var_export($return); ?>
12345