gpt4 book ai didi

php - PHP 函数末尾的 'return' 是什么意思?

转载 作者:可可西里 更新时间:2023-11-01 00:26:07 25 4
gpt4 key购买 nike

我正在使用 PHP 库生成包含多个函数的 Excel 文件。这是功能之一:

// Excel begin of file header
function xlsBOF() {
pack("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0, 0x0);
return;
}

我不确定“返回”会返回什么?有人可以澄清一下吗。

最佳答案

一样
return null;

它离开函数并将null设置为返回值。在某些情况下,语句 return; 明确表示此函数返回“无”null,而不是“值”null。其他语言(和文档)通常为此使用 void

关于php - PHP 函数末尾的 'return' 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6342866/

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