Closed ppsleep closed 4 years ago
Example code:
$Barcode = new Barcode(); $code = $Barcode->barcode_c128('12345' . chr(23) . '5678');
We expect to return an array as
Array ( [0] => 105 [1] => 12 [2] => 34 [3] => 100 [4] => 21 [5] => 101 [6] => 87 [7] => 99 [8] => 56 [9] => 78 [10] => 25 [11] => 106 [12] => 107 )
But the result is
Array ( [0] => 105 [1] => 12 [2] => 34 [3] => 100 [4] => 21 [5] => 98 [6] => 87 [7] => 99 [8] => 56 [9] => 78 [10] => 25 [11] => 106 [12] => 107 )
Example code:
We expect to return an array as
But the result is
Array ( [0] => 105 [1] => 12 [2] => 34 [3] => 100 [4] => 21 [5] => 98 [6] => 87 [7] => 99 [8] => 56 [9] => 78 [10] => 25 [11] => 106 [12] => 107 )