I have mysql table with collumns like \'operation.date\', \'operation.name\' and etc. After fetching that table data as object with $mysqli->fetch_object() i
$mysqli->fetch_object()
The correct way of accessing properties with a dot should be :
echo $object->{"operation.date"}