我遇到了一种情况,有时我需要通过 post 将参数传递给函数,例如实时数据的 ajax 调用,以及传递参数的默认样式,即myFunc($param)
.
我已经开始通过以下方式执行此操作:
public function createNote($note = null)
{
if($note == null) // If param didn't come in by a call or url...
{
$note = $_POST['note']; // Use the post data.
}
// Do stuff with $note...
}
我正在做的事情有什么问题还是这是最好的方法?