mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
21 lines
362 B
PHP
21 lines
362 B
PHP
--TEST--
|
|
Test posix_getpid() function : basic functionality
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
|
|
?>
|
|
--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====
|
|
|