alvin567 Posted June 5, 2012 Share Posted June 5, 2012 $this->_export Is derived from which package? Link to comment https://forums.phpfreaks.com/topic/263673-what-is-the-best-way-to-output-php-data-in-excel-spreadsheet/ Share on other sites More sharing options...
trq Posted June 5, 2012 Share Posted June 5, 2012 How should we know? That tiny little snippet could be from any number of php libraries. Link to comment https://forums.phpfreaks.com/topic/263673-what-is-the-best-way-to-output-php-data-in-excel-spreadsheet/#findComment-1351365 Share on other sites More sharing options...
cpd Posted June 5, 2012 Share Posted June 5, 2012 I've recently finished a class that uses the method _export myself... ^^ as above ^^ Link to comment https://forums.phpfreaks.com/topic/263673-what-is-the-best-way-to-output-php-data-in-excel-spreadsheet/#findComment-1351371 Share on other sites More sharing options...
alvin567 Posted June 5, 2012 Author Share Posted June 5, 2012 on _export, what are the parameter and fields? Link to comment https://forums.phpfreaks.com/topic/263673-what-is-the-best-way-to-output-php-data-in-excel-spreadsheet/#findComment-1351438 Share on other sites More sharing options...
cpd Posted June 5, 2012 Share Posted June 5, 2012 You've miss-understood. The point I was making is anybody can write a class which implements a method called "_export". class Foo { private $bar = "Something"; public function _export(){ echo $this->bar; } } By posting $this->_export() and asking where its from will get you zero answers. Link to comment https://forums.phpfreaks.com/topic/263673-what-is-the-best-way-to-output-php-data-in-excel-spreadsheet/#findComment-1351508 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.