Python には、 iterable 内のすべての要素が true の場合に true を返す nice all()
( doc ) メソッドがあります。これは次と同等です。
def all(iterable):
for element in iterable:
if not element:
return False
return True
PHPでこれを行う同様の良い方法はありますか?
Python には、 iterable 内のすべての要素が true の場合に true を返す nice all()
( doc ) メソッドがあります。これは次と同等です。
def all(iterable):
for element in iterable:
if not element:
return False
return True
PHPでこれを行う同様の良い方法はありますか?
それに最も近いのはarray_filterかもしれません。真の要素が見つからない場合は、偽と評価される空の配列を返します。
2番目の考えでは、それは pythons に似ていany()
ます。エミュレートするには、空の配列を除外するall()
必要がありますif(array_filter($array) == $array)
。if(array_filter($array) == $array && $array)