当前位置:首页 > PHP教程 > php数组 > 列表

str_replace 数组替换应用例子

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 13:35:29 浏览: 评论:0 

str_replace 数组,条件是替换与被替换数组长度必须相等,代码如下:

  1. $t =array('<','>'); 
  2. $e =array('&lt;','&gt;'); 
  3.  
  4. print_r ( str_replace($t,'ddd',$t)); 
  5. /* 
  6. ( 
  7.     [0] => ddd 
  8.     [1] => ddd 
  9. ) 
  10. */ 
  11.  
  12. print_r( str_replace($t,$e,$t) ); 
  13.  
  14. /* 
  15. Array 
  16. ( 
  17.     [0] => &lt; 
  18.     [1] => &gt; 
  19. ) 
  20. */ 

再测试字符串与数组,代码如下:

  1. $t =array('<','>'); 
  2. $e =array('&lt;','&gt;'); 
  3. $str = "<a fdafdafsa fdafda"
  4. print_r ( str_replace($t,'str_replace',$str)); 
  5. //开源代码phpfensi.com 

值str_replacea fdafdafsa fdafda.

Tags: str_replace php数组替换

分享到: