In PHP, is there an alternative to the object operator, or a reason why the object operator won't work on a Windows/IIS environment?
I'm trying to migrate a PHP web application from Linux/Apache/MySQL to Windows/IIS/MySQL (IIS10, PHP 7.1.1) and it appears the object operator does not work in the Windows environment. In order to make portions of the site work I had to convert all array references from
$query_rs->id;
to
$query_rs['id'];
I'm also concerned about the use of the object operator for functions like
$Member->save();
and other object property access like
$this->id
Thanks for your time, I haven't found much information on this issue here or anywhere else on the web.