php default arguments(php 默认参数)
问题描述
在 PHP 中,如果我有这样写的函数
In PHP, if I have a function written like this
function example($argument1, $argument2="", $argument3="")
我可以像这样在其他地方调用这个函数
And I can call this function in other place like this
example($argument1)
但是如果我想给第三个参数一些价值,我应该这样做吗
But if I want to give some value to the thrid argument, Should I do this
example($argument1, "", "test");
或者
example($argument1, NULL, "test");
我认为两者都可以,但是更好的方法是什么?因为将来如果在主函数中更改 $argument2 的值并且如果我有",那么会有什么问题吗?还是 NULL 是最好的选择?
I think both will work but what is the better way? Because in future if the value for the $argument2 is changed in the main function and if I have "", then will there be any problem? Or NULL is the best option?
谢谢
推荐答案
你可以使用:
example($argument1, '', 'test');
或者
example($argument1, NULL, 'test');
您始终可以使用而不是空字符串来检查 NULL:
You can always check for NULL using instead of empty string:
if ($argument === NULL) {
//
}
我认为这完全取决于带有 args 的函数内部发生的情况.
I think it all depends on what happens inside the function with the args.
这篇关于php 默认参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:php 默认参数
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01