PHP 8.5.0 Alpha 2 available for testing

Voting

: four plus five?
(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