for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xls\Record;
class Codepage extends AbstractRecord
{
const NAME = 'CODEPAGE';
const ID = 0x0042;
/**
* Generate the CODEPAGE biff record
* @param $codepage
*
* @return string
*/
public function getData($codepage)
$data = pack('v', $codepage);
return $this->getFullRecord($data);
}