3v4l.org

run code in 300+ PHP versions simultaneously
<?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);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(16) "**aHR0cHM6Ly93d3" [1]=> string(16) "cnVuY3Rpb24uc3Ry" [2]=> string(16) "LXNwbGl0LnBocA==" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
166.24 ms | 405 KiB | 5 Q