mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixed typos
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@27711 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5e47744128
commit
1ddb2ebc00
4 changed files with 7 additions and 7 deletions
|
@ -475,11 +475,11 @@ include_path=".;c:\www\phplib"
|
|||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Tells whether the short form (<userinput><? ?></userinput>of
|
||||
Tells whether the short form (<userinput><? ?></userinput>of
|
||||
PHP's open tag should be allowed. If you want to use PHP in
|
||||
combination with XML, you have to disable this option. If
|
||||
disabled, you must use the long form of the open tag
|
||||
(<userinput><?php ?></userinput>).</para>
|
||||
(<userinput><?php ?></userinput>).</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
|
|
@ -819,7 +819,7 @@
|
|||
This install guide will help you install and configure PHP on your
|
||||
Windows 9x/NT webservers. This guide was compiled by
|
||||
&link.bob;. The latest revision can be found at <ulink
|
||||
url="&url.win32install">&url.win32install</ulink>.
|
||||
url="&url.win32install;">&url.win32install;</ulink>.
|
||||
</simpara>
|
||||
<para>
|
||||
This guide provides installation support for:
|
||||
|
@ -897,7 +897,7 @@
|
|||
to load these modules. Some modules require you to have
|
||||
additional libraries installed on your system for the
|
||||
module to work correctly. The PHP <ulink
|
||||
url="&url.php.faq">FAQ</ulink> has more information on
|
||||
url="&url.php.faq;">FAQ</ulink> has more information on
|
||||
where to get supporting libraries. You can also load a
|
||||
module dynamically in your script using:
|
||||
<command>dl("php_*.dll");</command>
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
exit;
|
||||
}
|
||||
|
||||
if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 && !strcmp($OldAuth, $PHP_AUTH_USER)) ) {
|
||||
if(!isset($PHP_AUTH_USER) || ($SeenBefore == 1 && !strcmp($OldAuth, $PHP_AUTH_USER)) ) {
|
||||
authenticate();
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<example>
|
||||
<title>Getting the title of a remote page</title>
|
||||
<programlisting>
|
||||
<?php
|
||||
<?php
|
||||
$file = fopen("http://www.php.net/", "r");
|
||||
if (!$file) {
|
||||
echo "<p>Unable to open remote file.\n";
|
||||
|
@ -57,7 +57,7 @@
|
|||
<example>
|
||||
<title>Storing data on a remote server</title>
|
||||
<programlisting>
|
||||
<?php
|
||||
<?php
|
||||
$file = fopen("ftp://ftp.php.net/incoming/outputfile", "w");
|
||||
if (!$file) {
|
||||
echo "<p>Unable to open remote file for writing.\n";
|
||||
|
|
Loading…
Reference in a new issue