postaddictme / instagram-php-scraper

Get account information, photos, videos, stories and comments.
https://packagist.org/packages/raiym/instagram-php-scraper
MIT License
3.08k stars 798 forks source link

Fatal error: Cannot access protected property InstagramScraper\Model\Account::$biography #182

Closed amauryleproux closed 6 years ago

amauryleproux commented 6 years ago

Hi I'm trying to access to the object $account->biography but I can't cause of the "Protected" . When I make a print_r of $account I get something like [biography:protected] with a good value in it but i can't access directly to the value.

Any ideas?

Thanks :)

AlexMiroshnikov commented 6 years ago

That's quite obvious - https://github.com/postaddictme/instagram-php-scraper/blob/master/src/InstagramScraper/Model/Account.php#L125 - just use getBiography() method, like

$account->getBiography();
amauryleproux commented 6 years ago

Nope it wasn't "quite obvious" for me else if I will not have asked the question --' But anyway thank you very much for the obvious answer.

<3