Searched defs:split_length (Results 1 - 1 of 1) sorted by relevance
| /PHP_TRUNK/ext/standard/ |
| H A D | string.c | 5502 /* {{{ proto array str_split(string str [, int split_length]) 5503 Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long. */ 5508 long split_length = 1; local 5512 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &str, &str_len, &split_length) == FAILURE) { 5516 if (split_length <= 0) { 5521 array_init_size(return_value, ((str_len - 1) / split_length) + 1); 5523 if (split_length >= str_len) { 5528 n_reg_segments = str_len / split_length; 5532 add_next_index_stringl(return_value, p, split_length, [all...] |
Completed in 12 milliseconds