需要解释 PHP 语法
Need explanation about PHP syntax
在 Yii 中找到了 cosole 命令。在那里我找到了方法:
public function getHelp()
{
$output = "This command will allow you to remove some Yii temporary data \n\n";
return $output.parent::getHelp();
}
我不明白这是什么意思:
return $output.parent::getHelp();
这个我知道
parent::getHelp();
调用父方法。但是什么是全建呢?
.
is the string-concatenation operator in PHP。因此,您正在查看的代码只是 returns $output
的值与 parent::getHelp();
的值连接在一起。如果 $output
为 foo
且 parent:getHelp()
returns bar
,则 return
值为 foobar
.
在 Yii 中找到了 cosole 命令。在那里我找到了方法:
public function getHelp()
{
$output = "This command will allow you to remove some Yii temporary data \n\n";
return $output.parent::getHelp();
}
我不明白这是什么意思:
return $output.parent::getHelp();
这个我知道
parent::getHelp();
调用父方法。但是什么是全建呢?
.
is the string-concatenation operator in PHP。因此,您正在查看的代码只是 returns $output
的值与 parent::getHelp();
的值连接在一起。如果 $output
为 foo
且 parent:getHelp()
returns bar
,则 return
值为 foobar
.