私は持っている
if ( is_array($this->input->post("tolerance")) )
foreach($this->input->post("tolerance") as $tolerance)
$tolerances .= $tolerance . " " ;
else
$tolerances = 'Not defined';
配列値を取得する前に配列であるかどうかを確認していることは誰もが知っているので、コードを短くしたいと思います
では、これを短縮する正しい方法は何でしょうか?
is_array($this->input->post("tolerance")) ? foreach($this->input->post("tolerance") as tolerance) $tolerances .= $tolerance . " " : $tolerances = 'Not defined';