I am working with a PHP library to generate Excel files, which consists of several functions. This is one of the features:
function xlsBOF() {
pack("ssssss", 0x809, 0x8, 0x0, 0x10, 0x0, 0x0);
return;
}
I'm not sure what the return is returned? Can someone clarify this please.
source
share