I make a table with number 22 as the column name. How to access this column?
content:
I\'ve tryed thest
$obj = Tablename::f
Try this:
$col = '22'; $res = $obj->{$col}; var_dump($res);