PhpSpreadsheet/tests/data/Calculation/TextData/REPT.php

12 lines
268 B
PHP

<?php
return [
['#VALUE!'], // exception not enough args
['#VALUE!', '"ABC"'], // exception not enough args
['#VALUE!', '"ABC"', '"DEF"'],
['ABCABCABC', '"ABC"', 3],
['ABCABC', '"ABC"', 2.2],
['', '"ABC"', 0],
['#VALUE!', '"ABC"', -1],
];