mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixed word wrap in example
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@240949 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a47be82529
commit
6ee18acb99
2 changed files with 10 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<refentry xml:id="function.posix-geteuid" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>posix_geteuid</refname>
|
||||
|
@ -38,11 +38,11 @@
|
|||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
echo posix_getuid().'\n'; //10001
|
||||
echo posix_geteuid().'\n'; //10001
|
||||
echo posix_getuid()."\n"; //10001
|
||||
echo posix_geteuid()."\n"; //10001
|
||||
posix_seteuid(10000);
|
||||
echo posix_getuid().'\n'; //10001
|
||||
echo posix_geteuid().'\n'; //10000
|
||||
echo posix_getuid()."\n"; //10001
|
||||
echo posix_geteuid()."\n"; //10000
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<refentry xml:id="function.posix-setuid" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>posix_setuid</refname>
|
||||
|
@ -52,11 +52,11 @@
|
|||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
echo posix_getuid().'\n'; //10001
|
||||
echo posix_geteuid().'\n'; //10001
|
||||
echo posix_getuid()."\n"; //10001
|
||||
echo posix_geteuid()."\n"; //10001
|
||||
posix_setuid(10000);
|
||||
echo posix_getuid().'\n'; //10000
|
||||
echo posix_geteuid().'\n'; //10000
|
||||
echo posix_getuid()."\n"; //10000
|
||||
echo posix_geteuid()."\n"; //10000
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
|
Loading…
Reference in a new issue