Disclaimer: Auto generated file.
Please help us setting parameters to useful values and extending the examples.
- XlsxUtil::xlsx_sheetName_sanitize(string $sheet_name) : string
/**
* Sanitize \$sheet_name to be used as excel's tab name
*
* @param string \$sheet_name
* @return string sanitized \$sheet_name to be used as tab name
*/ - XlsxUtil::xlsx_sheetName_sanitize('palabra'); -> palabra
- XlsxUtil::xlsx_colNum2colLetter(int $colNum) : string
/**
* Returns excel's column letter(s) for \$colNum
*
* @param int \$colNum Current column number, zero based 0=A, in case errors are reported
* @return string Excel's column letter(s), '' (blank) on error
*/ - XlsxUtil::xlsx_colNum2colLetter(3); -> D
|