ConFoo Montreal 2026: Call for Papers

Voting

: min(five, seven)?
(Example: nine)

The Note You're Voting On

markrose at markrose dot ca
14 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