Corrected misspelled function name in example.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@27133 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kristian Köhntopp 2000-06-26 14:45:01 +00:00
parent fbfad5e077
commit 0605a19efa

View file

@ -876,9 +876,9 @@ $binarydata = pack ("nvc*", 0x1234, 0x5678, 65, 66);
</simpara>
<para>
<example>
<title><function>php_module</function> example</title>
<title><function>php_sapi_name</function> example</title>
<programlisting role="php">
$inter_type = php_module();
$inter_type = php_sapi_name();
if ($inter_type == "CGI")
print "You are using CGI PHP\n";
else