Jump to content

fsockopen timeout


ttocskcaj

Recommended Posts

I am using this code to check if a server is running. Everything is fine when it is running, but when it's not, it takes ages for the fsockopen to fail. Is there a way to make it timeout faster?

    
if (fsockopen($settings->survival_server, $settings->survival_port, $timeout = 0.1)){
        $survival['status'] = "Up";
    }else {
        $survival['status'] = "Down"
}

Link to comment
Share on other sites

Cool thanks. That works. What was wrong with the way I was doing it?

 

PHP doesn't support named parameters unfortunately.  If you have a list of optional params you have to specify all the ones you need up to the option you require.  There's no way to cherry pick one option in the way you were attempting to.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.