Hi,
I have a problem where a string is escaped, but then not converted back. Below is a bit more detail:
class Car extends \Phalcon\Mvc\Model {...}
$c = (new Car())->setName("Bob's car")->save();
That is saved in DB (MariaDB) as "Bob's car". All fine so far, however, when we do:
$name = $c->getName();
Rather than getting "Bob's car", I'm still getting "Bob's car".
What am I doing wrong? What do I have to configure to auto decode the string?
Thanks in advance.