我使用的是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/>";
?>
如何修复错误?
答案 0 :(得分:1)
echo "Hello my name is Sithelo. <br/>"
缺少;
。