VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php 正则替换函数 ereg_replace

下面的实例是利用php 正则替换函数 ereg_replace来把指定的字符替换成我想需要的字符实例,代码如下:

  1. $num = 'www.phpfensi.com'
  2.      $string = "this string has four words. <br>"
  3.      $string = ereg_replace ('four'$num$string); 
  4.      echo $string
  5.    
  6.      $num = '49'
  7.      $string = "this string has four words"
  8.      $string = ereg_replace ('four'$num$string); 
  9.      echo $string
  10.  
  11.    $string ="测试用文字"
  12.    echo "**********$string**********<p>"
  13.    $string = ereg_replace ("^""<br>"$string); 
  14.    $string = ereg_replace ("$""<br>"$string); 
  15.    echo "==========$string=========="
  16.    //开源代码phpfensi.com
  17.  

出处:http://www.phpfensi.com/php/20140920/5734.html


相关教程