Skip to content

Instantly share code, notes, and snippets.

@stemar
Created January 10, 2025 23:50
Show Gist options
  • Save stemar/cd62c5910bcb89a5e312c164200be3bf to your computer and use it in GitHub Desktop.
Save stemar/cd62c5910bcb89a5e312c164200be3bf to your computer and use it in GitHub Desktop.
Reverse function of nl2br()
<?php
function br2nl($string) {
return preg_replace('/<br(\s*)?\/?>/i', PHP_EOL, $string);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment