我正在使用 php 和 IIS 7.5。错误的其他细节:
Module FastCgiModule
Notification ExecuteRequestHandler
Handler PHP_via_FastCGI
Error Code 0x00000000
Requested URL http://localhost:80/example.php
Physical Path C:\inetpub\wwwroot\example.php
Logon Method Anonymous
Logon User Anonymous
example.php 有以下代码:
<?php
class Persons {
function say_hello() {
echo "Hello my name is Sithelo Ngwenya. <br/>"
}
}
$person = new Persons();
echo get_class($person) . "<br/>";
?>
如何修复错误?