Oddbean new post about | logout
 Any #PHP devs know the fastest way to just check to see if a url or image exists?

I've got a function using CURL and it just takes way too long to run when checking multiple URLs. 
 You can run multiple requests in parallel with curl, think the PHP function is called "curl_multi_exec" or something like it.