I am trying to get the the string \"this info\" inside this object lets call it $object, but data is protected, how can I access that pocket?
$object
You can use the famous getters and setters methods to private/protected properties. Ex:
helloMessage; } public function setHelloMessage( $value ) { //Validations $this->helloMessage = $value; } } ?>
Greetings,
Estefano.