Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php class Test1 { public string $type =''; public function __construct() { $this->type = '123'; } public function changeType() { $this->type = '456'; } public function main() { $this->changeType(); echo $this->type; } } $test = new Test1(); $test->main();
Copy Clear