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.
$this-> input- $_POST>post(); を使用してこれを行う最善の方法は何でしょうか?
$_POST
例:
if($_POST) { Do This }
ドキュメントによると、
$this->input->post('value')
存在しない場合は値または false を返すため、これを使用する必要があります。
if ($this->input->post('value')) { // 'value' can be safely used now, because we know it's there }