<?php $str = "aHR0cHM6Ly93d3cnVuY3Rpb24uc3RyLXNwbGl0LnBocA=="; $devide = 3; $char = '*'; // that not used in your string $add = $devide - strlen($str)%$devide; $total = strlen($str) + $add; $str = str_pad($str,$total,$char,STR_PAD_LEFT); $result = str_split($str, $total/$devide ); var_dump($result);
You have javascript disabled. You will not be able to edit any code.