我在第3行的PHP代码中收到此错误,可能是什么错误?此代码取自frank在interactinet dot com上的 php手册用户注释
<?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 …Run Code Online (Sandbox Code Playgroud) php ×1