str_split( $string,  $split_length = 1 )

Convert a string to an array (needed for PHP4 compatibility)


Description Description


Parameters Parameters

$string

(Required) (string) The input string.

$split_length

(Optional) (int) Maximum length of the chunk.

Default value: 1


Top ↑

Return Return

(If) the optional split_length parameter is specified, the returned array will be broken down into chunks with each being split_length in length, otherwise each chunk will be one character in length. FALSE is returned if split_length is less than 1. If the split_length length exceeds the length of string , the entire string is returned as the first (and only) array element.


Top ↑

Source Source

File: includes/lib/tcpdf/include/barcodes/qrcode.php

function str_split($string, $split_length = 1) {
$array = explode("\r\n", chunk_split($string, $split_length));
array_pop($array);
return $array;
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.