Voting

: min(nine, four)?
(Example: nine)

The Note You're Voting On

markrose at markrose dot ca
13 years ago
An even faster way to line-breaks every 64th character is using the chunk_split function:

<?php
$string
= chunk_split(base64_encode($string), 64, "\n");
?>

<< Back to user notes page

To Top