リアルタイム データの 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...
}
私がやっていることに何か問題がありますか、それともこれが最善の方法ですか?