reference/info/functions/extension-loaded.xml
c44475e1fafcbee203ed4935a6d5d7a01379fcdc
...
...
@@ -10,7 +10,7 @@
10
10
&reftitle.description;
11
11
<methodsynopsis>
12
12
<type>bool</type><methodname>extension_loaded</methodname>
13
-
<methodparam><type>string</type><parameter>name</parameter></methodparam>
13
+
<methodparam><type>string</type><parameter>extension</parameter></methodparam>
14
14
</methodsynopsis>
15
15
<para>
16
16
Finds out whether the extension is loaded.
...
...
@@ -22,7 +22,7 @@
22
22
<para>
23
23
<variablelist>
24
24
<varlistentry>
25
-
<term><parameter>name</parameter></term>
25
+
<term><parameter>extension</parameter></term>
26
26
<listitem>
27
27
<para>
28
28
The extension name. This parameter is case-insensitive.
...
...
@@ -62,7 +62,7 @@ ctype
62
62
<refsect1 role="returnvalues">
63
63
&reftitle.returnvalues;
64
64
<para>
65
-
Returns &true; if the extension identified by <parameter>name</parameter>
65
+
Returns &true; if the extension identified by <parameter>extension</parameter>
66
66
is loaded, &false; otherwise.
67
67
</para>
68
68
</refsect1>
...
...
@@ -101,7 +101,6 @@ if (!extension_loaded('gd')) {
101
101
</refsect1>
102
102

103
103
</refentry>
104
-

105
104
<!-- Keep this comment at the end of the file
106
105
Local variables:
107
106
mode: sgml
108
107