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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:43:48+00:00 2026-05-10T19:43:48+00:00

I have a PHP class that creates a PNG image on the fly and

  • 0

I have a PHP class that creates a PNG image on the fly and sends it to browser. PHP manual says that I need to make sure that imagedestroy function is called at end to release the memory. Now, if I weren’t using a class, I would have some code like this:

function shutdown_func()  {     global $img;     if ($img)         imagedestroy($img); } register_shutdown_function('shutdown_func'); 

However, I believe that appropriate place for my class would be to place a call to imagedestroy in class’ destructor.

I failed to find out if destructors get called the same way shutdown functions does? For example, if execution stops when user presses the STOP button in browser.

Note: whatever you write in your answer, please point to some article or manual page (URL) that supports it.

  • 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. 2026-05-10T19:43:49+00:00Added an answer on May 10, 2026 at 7:43 pm

    I just tested with Apache, PHP being used as Apache module. I created an endless loop like this:

    <?php class X {     function __destruct()     {         $fp = fopen('/var/www/htdocs/dtor.txt', 'w+');         fputs($fp, 'Destroyed\n');         fclose($fp);     } };  $obj = new X(); while (true) {     // do nothing } ?> 

    Here’s what I found out:

    • pressing STOP button in Firefox does not stop this script
    • If I shut down Apache, destructor does not get called
    • It stops when it reaches PHP max_execution_time and destuctor does not get called

    However, doing this:

    <?php function shutdown_func() {     $fp = fopen('/var/www/htdocs/dtor.txt', 'w+');     fputs($fp, 'Destroyed2\n');     fclose($fp); } register_shutdown_function('shutdown_func');  while (true) {     // do nothing } ?> 

    shutdown_func gets called. So this means that class destuctor is not that good as shutdown functions.

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

Sidebar

Ask A Question

Stats

  • Questions 237k
  • Answers 237k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Talk to a lawyer. You can start by gathering license… May 13, 2026 at 6:36 am
  • Editorial Team
    Editorial Team added an answer Your problem does appear to be that libstdc++ is not… May 13, 2026 at 6:36 am
  • Editorial Team
    Editorial Team added an answer Take a look at the following: IP address geolocation SQL… May 13, 2026 at 6:36 am

Related Questions

I have a PHP script that creates a thumbnail and lists an image gallery.
I've got a PHP background, but I'm beginning to learn Objective-C, so that I
I've created a template for WebSVN ( see it in action here ) and
I am writing unit tests for a PHP class that maintains users in a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.