gpt4 book ai didi

PHP 解析错误 : syntax error, 意外的 T_PUBLIC

转载 作者:IT王子 更新时间:2023-10-28 23:58:38 26 4
gpt4 key购买 nike

我在第 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com