missing parameter in example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@240972 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Martin Samesch 2007-08-09 20:24:28 +00:00
parent d38f741677
commit 03ea3d2ec0

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<refentry xml:id="function.posix-getsid" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>posix_getsid</refname>
@ -52,7 +52,8 @@
<programlisting role="php">
<![CDATA[
<?php
echo posix_getsid(); //8805
$pid = posix_getpid();
echo posix_getsid($pid); //8805
?>
]]>
</programlisting>