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
$data = array_map(function($row) Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /opt/lampp/htdocs/dbis/venki/AmBank/XLSXReader-master/sample.php on line 62
Pleae help me to solve
code is as follows
$data = array_map(function($row) { $converted = XLSXReader::toUnixTimeStamp($row[0]); return array($row[0], $converted, date('c', $converted), $row[1]); }, $xlsx->getSheetData('Dates')); array_unshift($data, array('Excel Date', 'Unix Timestamp', 'Formatted Date', 'Data')); array2Table($data); ?>
reply to email as [email protected]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
$data = array_map(function($row)
Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /opt/lampp/htdocs/dbis/venki/AmBank/XLSXReader-master/sample.php on line 62
Pleae help me to solve
code is as follows
$data = array_map(function($row)
{
$converted = XLSXReader::toUnixTimeStamp($row[0]);
return array($row[0], $converted, date('c', $converted), $row[1]);
}, $xlsx->getSheetData('Dates'));
array_unshift($data, array('Excel Date', 'Unix Timestamp', 'Formatted Date', 'Data'));
array2Table($data);
?>
reply to email as [email protected]
The text was updated successfully, but these errors were encountered: