PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function split4bites ($input) { $result = []; $start = 0; while ($start < strlen($input)) { array_push($result, substr($input, $start, 4)); $start = $start + 4; } return $result; } $result = split4bites('jtoir75nsdt56odj'); print_r($result);
Show:  
Copy Clear