Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8505135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:13:59+00:00 2026-06-11T02:13:59+00:00

Im doing a simple webapp that that is used to display some server’s status,

  • 0

Im doing a simple webapp that that is used to display some server’s status, included the state of the server (ON/OFF). To check the server’s status I use the funciotion “urlExists” so if it returns me a true i shot that server as online, offline in the other case.

When I check a server, if it is online the function executes fast, but when the server that i am checking is offline it takes too long to check the next one. So I am trying to limit the execution time of the function like this:

...
set_time_limit(1);
$exists = false;
$exists = urlExists($url);
set_time_limit();
...

but the execution time is the same using the set_time_limit(). I dont know if set_time_limit is used to do this kind of things but is the only thing i founded. Any idea on how I can do this ??

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T02:14:01+00:00Added an answer on June 11, 2026 at 2:14 am

    Try this function that uses CURL:

    function urlExists($url)
    {
        $ch = curl_init($url);
        curl_setopt($ch, CURLOPT_NOBODY, true);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);
    
        $exists = curl_exec($ch);
        curl_close($ch);
    
        // If exec returns boolean, it's false, therefore the server is down/url doesn't exist.
        return !is_bool($exists);
    }
    

    As you can see, you can set a time limit for the connection with CURLOPT_CONNECTTIMEOUT.
    This way you don’t need to set_time_limit();

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a webapp that basically allows users to kick off shell scripts with
I'm doing some maintenance coding on a webapp and I am getting a javascript
I am writing a fairly simple webapp that pulls data from 3 tables in
I have a simple webapp using node.js that reads the database and displays this
I'm just doing a java tomcat project, that does some query in a database
I've been doing simple multi-threading in VB.NET for a while, and have just gotten
I'm doing simple divisions in c#, and I am a bit puzzled by its
What's the easiest way of doing simple pattern matching a la .something.com something.com/ something.com/somefolder/*.jpg
I'm considering the feasibility of doing simple reporting on Trello data. My quick review
In My iphone Application,I am doing simple image animation in a View and in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.