You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.
Does PHP < 5.3 actually error with this? Standard PHP behaviour when a function is called with extra arguments is simply to ignore those extra arguments
It does not trigger an error but it does not register the Autoloader, so it fails with : | Fatal error: Class 'PHPExcel_Shared_String' not found
Upon removing the prepend parameter it seems to work fine, my PHP version is 5.2.11
tengo el mismo error Fatal error: Class 'PHPExcel_Shared_String' not found in \PHPExcel\Autoloader.php on line 11
line 11 -> PHPExcel_Shared_String::buildCharacterSets();
However I see that already what they comment in the library, some other suggestion?
class PHPExcel_Autoloader
{
/**
* Register the Autoloader with SPL
*
*/
public static function register()
{
if (function_exists('__autoload')) {
// Register any existing autoloader function with SPL, so we don't get any clashes
spl_autoload_register('__autoload');
File:
PHPExcel/Autoloader.php
Location:
58: return spl_autoload_register(array('PHPExcel_Autoloader', 'Load'), true, true);
This breaks compatibility with php < 5.3.
http://www.php.net/manual/ro/function.spl-autoload-register.php
The text was updated successfully, but these errors were encountered: