PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
<?php class example { public $db; public $value; function __construct($db) { $this->db = $db; } function test($v) { $this->value = $v; } } $a = new example(""); $c = $a->test("new value"); echo $a->value; ?>
Copy Clear
Copy Format Clear
<?php class example { public $db; public $value; function test($v) { print_r($v); die; $this->value = $v; } } $a = new example(""); $c = $a->test("test"); $a->value; ?>
Show:  
Copy Clear