- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我在第 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'
}
?>
最佳答案
public
关键字仅在声明类方法时使用。
由于您声明的是一个简单的函数而不是一个类,因此您需要从代码中删除 public
。
关于PHP 解析错误 : syntax error, 意外的 T_PUBLIC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13341378/
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
这个问题不太可能帮助任何 future 的访客;它只与一个小地理区域、一个特定时刻或一个非常狭窄的情况相关,而这些情况通常不适用于互联网的全局受众。如需帮助使这个问题更广泛地适用,visit the
我是使用symfony2的新手,我目前正在研究在其网站上找到的书籍文档,但是我遇到了这个问题,我的 Controller 出现此错误,我的代码没有意外或丢失的格式: setName('A Fo
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我正在执行在 PHP 中使用对象类(class) (Codecademy.com) 中的 Property Panic (2),但出现此错误。这是我的代码: Reconstructing
我是一名优秀的程序员,十分优秀!