Skip to content

Instantly share code, notes, and snippets.

View 5lava's full-sized avatar

Slava Sterling 5lava

View GitHub Profile
<?php
// release indicator
class indicator {
public function __construct($name) { $this->name = $name; }
public function __destruct() { echo "__destruct ***{$this->name}***\n"; }
}
function test1() {