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.
StackOverflow で、URL が 1 つだけ存在するかどうかを確認する方法を見つけました。
if (@fopen($url,'r')){ echo 'Exist'; } else { echo 'Does not exist'; }
これを配列と、おそらく while ループで使用するにはどうすればよいでしょうか?
複数の URL を確認できるようにします。
たとえば、50 個の URL をチェックできるようにするには?
foreach ループを使用するだけです。
foreach ($urlsArray as $url) { if(@fopen($url,'r')){ echo 'Exist'; } else { echo 'Doesnt exist'; } }