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 4039912
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:40:55+00:00 2026-05-20T12:40:55+00:00

The Notes section in the function documentation of ignore_user_abort() suggest that PHP cannot detect

  • 0

The Notes section in the function documentation of ignore_user_abort() suggest that PHP cannot detect that a user has aborted the request if no data is sent to the client. This is true for the function connection_status(), too. Unfortunately, I need to detect a user abort (an ajax request that can be cancelled) on a page which makes use of output buffering (and I cannot change that easily.)

Is there any other way of detecting a user abort except using the function
connection_status()? Or any specific way to make that function return the correct value? PHP should actually know that the request was aborted, since a FIN packet is received from the client.

I have already tried analyzing the stream metadata of php://input, php://output, php://stdin and php://stdout after reading/writing data in a blocking and non-blocking manner before and after the connection was aborted, but that didn’t provide any useful state changes.

  • 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-05-20T12:40:56+00:00Added an answer on May 20, 2026 at 12:40 pm

    Silly suggestion, but … have you tried sending some data to the client, followed by a flush() before you start the output buffering? The only other solution I can think of is to escape the buffer(s), but I can imagine how it could be quite troublesome, as you said.

    Maybe a helper to assist with breaking the buffer …

    function OBWanCallback($buffer)
    {
        if( OBWan::$isFinished )
        {
            // -- Actual callbacks go here ...
        }
    
       return $buffer;
    }
    
    OBWan::startbuffer('OBWanCallback');
    [ // -- Example functionality
        self::$callback = $callback;
        ob_start(self::$callback);
    ]
    
    // -- in some code far, far away ...
    
    OBWan::suspendbuffer();
    [ // -- Example functionality
        self::$buffercache = ob_get_clean();
    ]
    
    echo " ";
    flush();
    
    OBWan::resumebuffer();
    [ // -- Example functionality
        ob_start(self::$callback);
        echo self::$buffercache;
        self::$buffercache = "";
    ]
    
    // -- in some code far, far away ...
    
    OBWan::outputbuffer();
    [
        self::$isFinished = true;
        return ob_get_clean();
    ]
    

    with something to account for the depth of buffers you’ve implemented, if you have implemented depth.

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

Sidebar

Related Questions

http://leepoint.net/notes-java/data/expressions/22compareobjects.html It turns out that defining equals() isn't trivial; in fact it's moderately hard
None of the guides/notes/articles that discuss IDisposable pattern suggest that one should set the
Fixed: See notes at bottom I am implementing a generic class that supports two
In the section covering setlocale, the ANSI C standard states in a footnote that
Servus Ninjas, this is what ecmascript 5 spec. (page 118) in the section Function.prototype.apply(thisArg,
I am using Lotus Notes as my email client, and how to change the
The following SQL: SELECT notes + 'SomeText' FROM NotesTable a Give the error: The
What are release notes for and who reads them? Should/could they be automated by
Earlier versions of the Notes client would automatically turn a sent URL into a
I'm not a Notes programmer, however, for my sins, have been working on some

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.