<?php
class Test {
public function __construct(){
$name = 123;
$this->$name = 'Test';
$this->123 = 'Test2';
}
}
$test = new Test();
Standard input is empty
Standard output is empty
PHP Parse error:  syntax error, unexpected '123' (T_LNUMBER), expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in /home/g8yvyc/prog.php on line 11