“Destruct Php” Ответ

Destruct Php

class Example1
{
   public $cache_file;

   function __construct()
   {
      // some PHP code...
   }

   function __destruct()
   {
      $file = "/var/www/cache/tmp/{$this->cache_file}";
      if (file_exists($file)) @unlink($file);
   }
}

// some PHP code...

$user_data = unserialize($_GET['data']);

// some PHP code...
calyCoder

PHP OOP - деструктор

<?php
class Fruit {
  public $name;
  public $color;

  function __construct($name) {
    $this->name = $name;
  }
  function __destruct() {
    echo "The fruit is {$this->name}.";
  }
}

$apple = new Fruit("Apple");
?>
naly moslih

Ответы похожие на “Destruct Php”

Вопросы похожие на “Destruct Php”

Больше похожих ответов на “Destruct Php” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования