mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
19 lines
276 B
PHP
19 lines
276 B
PHP
--TEST--
|
|
Test posix_getpid() function : basic functionality
|
|
--EXTENSIONS--
|
|
posix
|
|
--FILE--
|
|
<?php
|
|
echo "Basic test of POSIX getpid function\n";
|
|
|
|
$pid = posix_getpid();
|
|
|
|
var_dump($pid);
|
|
|
|
?>
|
|
===DONE====
|
|
--EXPECTF--
|
|
Basic test of POSIX getpid function
|
|
int(%d)
|
|
===DONE====
|
|
|