1--TEST--
2Test getmypid() function: basic test
3--FILE--
4<?php
5/* Prototype  : int getmypid  ( void  )
6 * Description: Gets the current PHP process ID.
7 * Source code: ext/standard/pageinfo.c
8 * Alias to functions:
9 */
10
11echo "Simple testcase for getmypid() function\n";
12
13var_dump(getmypid());
14
15echo "Done\n";
16?>
17--EXPECTF--
18Simple testcase for getmypid() function
19int(%d)
20Done
21