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

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Fixed it by adding: html { background : url(null) fixed… May 11, 2026 at 9:53 am
  • added an answer Jonathan Leffler answer was helpful (he provided enough info for… May 11, 2026 at 9:53 am
  • added an answer If there are some characters that do not occur in… May 11, 2026 at 9:53 am

Related Questions

I have a PHP class that creates a PNG image on the fly and
I currently have a custom session handler class which simply builds on php's session
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 have a php server that is running my domain name. For testing purposes
I have a PHP application that displays a list of options to a user.
I have a PHP script that runs as a CGI program and the HTTP
I have a PHP script that needs to determine if it's been executed via
I have a PHP script that initialises an image gallery. It loops through all
I have a PHP web application on an intranet that can extract the IP

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.