我在第3行的PHP代码中收到此错误,可能是什么错误?此代码取自php手册user notes by frank at interactinet dot com
<?php
public function myMethod()
{
return 'test';
}
public function myOtherMethod()
{
return null;
}
if($val = $this->myMethod())
{
// $val might be 1 instead of the expected 'test'
}
if( ($val = $this->myMethod()) )
{
// now $val should be 'test'
}
// or to check for false
if( !($val = $this->myMethod()) )
{
// this will not run since $val = 'test' and equates to true
}
// this is an easy way to assign default value only if a value is not returned:
if( !($val = $this->myOtherMethod()) )
{
$val = 'default'
}
?>
答案 0 :(得分:38)
public
关键字仅用于类中的函数/变量声明。由于您没有使用课程,因此需要将其从代码中删除。
答案 1 :(得分:2)
您可以从功能中删除公共关键字,因为您必须定义类才能声明公共,私有或受保护的功能