Skip to content

Instantly share code, notes, and snippets.

@hfhimage
Created January 3, 2014 09:54
Show Gist options
  • Save hfhimage/8235571 to your computer and use it in GitHub Desktop.
Save hfhimage/8235571 to your computer and use it in GitHub Desktop.
php 替换换行符
<?php
$order = array("\r\n", "\n", "\r");
$replace = '';
$str=str_replace($order, $replace, $str);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment