19

我在第 3 行的这个 PHP 代码中遇到了这个错误,可能是什么问题?此代码取自frank at interinet dot com 的 php manual user notes

<?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'
}

?> 
4

2 回答 2

49

public关键字仅在声明类方法时使用。

由于您声明的是一个简单的函数而不是一个类,因此您需要public从代码中删除。

于 2012-11-12T09:44:32.860 回答
3

您可以从函数中删除 public 关键字,因为您必须定义一个才能声明公共、私有或受保护的函数

于 2012-11-12T10:03:25.123 回答