mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
typo
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@229287 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d1e6df1356
commit
b8297dd42b
3 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<refentry id='function.curl-getinfo'>
|
||||
<refnamediv>
|
||||
<refname>curl_getinfo</refname>
|
||||
|
@ -126,7 +126,7 @@
|
|||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<constant>"CURLINFO_CONTENT_TYPE</constant> - Content-type of downloaded object, NULL indicates server did not send valid Content-Type: header
|
||||
<constant>CURLINFO_CONTENT_TYPE</constant> - Content-type of downloaded object, NULL indicates server did not send valid Content-Type: header
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.31 -->
|
||||
<refentry id="function.rtrim">
|
||||
<refnamediv>
|
||||
|
@ -93,7 +93,7 @@ var_dump($trimmed);
|
|||
$trimmed = rtrim($hello, "Hdle");
|
||||
var_dump($trimmed);
|
||||
|
||||
// trim the ASCII control characters at the beginning of $binary
|
||||
// trim the ASCII control characters at the end of $binary
|
||||
// (from 0 to 31 inclusive)
|
||||
$clean = rtrim($binary, "\x00..\x1F");
|
||||
var_dump($clean);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.trim">
|
||||
<refnamediv>
|
||||
|
@ -144,7 +144,7 @@ var_dump($trimmed);
|
|||
$trimmed = trim($hello, "Hdle");
|
||||
var_dump($trimmed);
|
||||
|
||||
// trim the ASCII control characters at the beginning of $binary
|
||||
// trim the ASCII control characters at the beginning and end of $binary
|
||||
// (from 0 to 31 inclusive)
|
||||
$clean = trim($binary, "\x00..\x1F");
|
||||
var_dump($clean);
|
||||
|
|
Loading…
Reference in a new issue