“Конструктор в PHP” Ответ

Конструктор в PHP

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

  function __construct($name) {
    $this->name = $name;
  }
  function get_name() {
    return $this->name;
  }
  function get_color() {
    return $this->color;
  }
}
$mycar = new Car("Audi");
$mycar->color = "red";

echo $mycar->get_name(); // Audi
echo $mycar->get_color(); // red
Talented Turtle

конструкция 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”

Вопросы похожие на “Конструктор в PHP”

Больше похожих ответов на “Конструктор в PHP” по PHP

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

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