We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On the example: $topLeftCornerCell = $cellFeed->getCell(1, 1); echo $topLeftCornerCell->content; // "last_name"
ERROR: Fatal error: Uncaught Error: Cannot access protected property Google\Spreadsheet\CellEntry::$content in ... Error: Cannot access protected property Google\Spreadsheet\CellEntry::$content
Please Help!!
The text was updated successfully, but these errors were encountered:
Me too getting same
Sorry, something went wrong.
Hi,
Instead of: $topLeftCornerCell = $cellFeed->getCell(1, 1); echo $topLeftCornerCell->content;
Try: $topLeftCornerCell = $cellFeed->getCell(1, 1); echo $topLeftCornerCell->getContent();
Grtz Nicolas
No branches or pull requests
On the example:
$topLeftCornerCell = $cellFeed->getCell(1, 1);
echo $topLeftCornerCell->content; // "last_name"
ERROR:
Fatal error: Uncaught Error: Cannot access protected property Google\Spreadsheet\CellEntry::$content in ...
Error: Cannot access protected property Google\Spreadsheet\CellEntry::$content
Please Help!!
The text was updated successfully, but these errors were encountered: