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.
私は配列を持っています:
$my_array = array(1 => 'has value', 2 =>'', 3 => '');
if ステートメントを実行して、すべてのキーに値があるかどうかを確認し、すべてのキーに値がない場合は false を返します
お気に入り:
if(any_key_has_value($my_array)){ //run my query }
function hasValue($v) { return strval($v) != ''; } $res_array = array_filter($my_array, 'hasValue'); // any key has value $any_key_has_value = 0 < sizeof($res_array); // all keys have values $all_keys_have_values = sizeof($my_array) == sizeof($res_array);