- corrected XML related typos (<, &, unterminated entity references, ...)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@43309 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jirka Kosek 2001-03-12 14:00:51 +00:00
parent d588233629
commit 9af2d25b73
3 changed files with 5 additions and 5 deletions

View file

@ -641,7 +641,7 @@ function getmicrotime(){
$time_start = getmicrotime();
for ($i=0; $i < 1000; $i++){
for ($i=0; $i &lt; 1000; $i++){
//do nothing, 1000 times
}

View file

@ -797,7 +797,7 @@ fclose($fp);
</para>
<para>
For more information on the GZIP file format, see the document:
<ulink url="&url.rfc1952">GZIP file format specification
<ulink url="&url.rfc1952;">GZIP file format specification
version 4.3</ulink> (RFC 1952).
</para>
<para>

View file

@ -32,7 +32,7 @@
<programlisting role="php">
if ((condition1) || (condition2)) {
action1;
} elseif ((condition3) && (condition4)) {
} elseif ((condition3) &amp;&amp; (condition4)) {
action2;
} else {
defaultaction;
@ -113,10 +113,10 @@ function fooFunction($arg1, $arg2 = '')
Always attempt to return a meaningful value from a function if one
is appropriate. Here is a slightly longer example:
<programlisting role="php">
function connect(&$dsn, $persistent = false)
function connect(&amp;$dsn, $persistent = false)
{
if (is_array($dsn)) {
$dsninfo = &$dsn;
$dsninfo = &amp;$dsn;
} else {
$dsninfo = DB::parseDSN($dsn);
}