Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为这很容易,但由于某种原因它不起作用
public function test($data = null){ }
但是当我想向函数发送一些数据时,它会将其变为空,所以我怎样才能拥有它,这样如果我不发送任何内容,它就是空的,否则就是我发送的数据
function test($data = null){ echo $data; } test('abcd'); // output abcd
请参阅工作示例http://codepad.viper-7.com/Z8T23k
对于可选参数语法来说,这看起来很合适。我们必须有更多的细节来告诉你什么是行不通的