私は<img>
タグは寸法(width
/height
)が不足していたときに検証しif
文を持っているか、彼らは例えば(width=""
/height=""
)、空白の場合:この「if」文を簡略化できますか?
<img src="https://placehold.it/100x50" alt="Blank width/height" width="" height="">
<img src="https://placehold.it/100x50" alt="Blank width" width="">
<img src="https://placehold.it/100x50" alt="Blank height" height="">
<img src="https://placehold.it/100x50" alt="No width/height">
if
次の文は私のために動作します。しかし、以下で使用しているロジックを単純化することが可能かどうかを知りたかったのです。 Here's the link to the full source code。
if (
# There is no width
! in_array('width', $img[1]) ||
# There is no height
! in_array('height', $img[1]) ||
# The width is blank (width="")
(in_array('width', $img[1]) && in_array('""', $img[2])) ||
# The height is blank (height="")
(in_array('height', $img[1]) && in_array('""', $img[2]))
) {
# Code here...
}
は 'のためにそれができません$ img [2] 'には幅や高さに対応しない' ''が含まれていますか? (例えば、 "alt"の中の "" "") – apokryfos
http://codereview.stackexchange.com/ – zurfyx
@apokryfosに移動する必要があります。 –