mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- Use <filename> tag where appropriate.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@81709 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
63d77489f7
commit
95b7f83b3e
1 changed files with 8 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- splitted from ./en/functions/info.xml, last change in rev 1.29 -->
|
||||
<refentry id="function.dl">
|
||||
<refnamediv>
|
||||
|
@ -18,9 +18,9 @@
|
|||
parameter is <emphasis>only</emphasis> the filename of the extension to
|
||||
load which also depends on your platform. For example, the <link
|
||||
linkend="ref.sockets">sockets</link> extension (if compiled as a shared
|
||||
module, not the default!) would be called <literal>sockets.so</literal>
|
||||
on unix platforms whereas it is called <literal>php_sockets.dll</literal>
|
||||
on the windows platform.
|
||||
module, not the default!) would be called <filename>sockets.so</filename>
|
||||
on unix platforms whereas it is called
|
||||
<filename>php_sockets.dll</filename> on the windows platform.
|
||||
</para>
|
||||
<para>
|
||||
&return.success; If the functionality of loading modules is not available
|
||||
|
@ -53,7 +53,7 @@ if (!extension_loaded('gd')) {
|
|||
</para>
|
||||
<para>
|
||||
Windows - If not explicitly set in the &php.ini;, the extension is
|
||||
loaded from <literal>c:\php4\extensions\</literal> by default.
|
||||
loaded from <filename>c:\php4\extensions\</filename> by default.
|
||||
</para>
|
||||
<para>
|
||||
Unix - If not explicitly set in the &php.ini;, the default extension
|
||||
|
@ -82,8 +82,9 @@ if (!extension_loaded('gd')) {
|
|||
Taking into account the above, the directory then defaults to
|
||||
<literal><php-install-directory>/lib/php/extension/<debug-or-not>-<zts-or-not>-ZEND_MODULE_API_NO</literal>,
|
||||
e.g.
|
||||
<literal>/usr/local/php/lib/php/extensions/debug-non-zts-20010901</literal>
|
||||
or <literal>/usr/local/php/lib/php/extensions/no-debug-zts-20010901</literal>.
|
||||
<filename>/usr/local/php/lib/php/extensions/debug-non-zts-20010901</filename>
|
||||
or
|
||||
<filename>/usr/local/php/lib/php/extensions/no-debug-zts-20010901</filename>.
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue