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

  • Home
  • SEARCH
  • 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

Related Questions

I have a PHP class that creates a SQL query based on values entered
I currently have my PHP class variables set up like this: class someThing {
Does PHP have a method of having auto-generated class variables? I think I've seen
I want to create a static class in PHP and have it behave like
I currently have a custom session handler class which simply builds on php's session
I have PHP configured so that magic quotes are on and register globals are
We have PHP 5.2.6 deployed to c:\php and in that folder there is the
I have a php server that is running my domain name. For testing purposes
We have a PHP project that we would like to version control. Right now
I have been creating a helper class for the Facebook PHP API in order

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.