protected function PHPExcelTest::getFilename in PHPExcel 7.3
7 calls to PHPExcelTest::getFilename()
- PHPExcelTest::testCustomMethodCalls in tests/
phpexcel.test  - Test the ability to pass custom methods and arguments on import.
 - PHPExcelTest::testDBResultExport in tests/
phpexcel.test  - Test db_result export.
 - PHPExcelTest::testIgnoreHeaders in tests/
phpexcel.test  - Test "ignore_headers" option.
 - PHPExcelTest::testIssue1988868 in tests/
phpexcel.test  - A cell with a value of '0' must get exported as such.
 - PHPExcelTest::testMultipleWorksheetExport in tests/
phpexcel.test  - Test multiple worksheet Excel export.
 
File
- tests/
phpexcel.test, line 498  - Defines the test case for phpexcel
 
Class
- PHPExcelTest
 - @file Defines the test case for phpexcel
 
Code
protected function getFilename($extension = 'xls') {
  return 'phpexcel_' . uniqid() . '.' . $extension;
}