萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> 兩種php 字符串替換函數

兩種php 字符串替換函數

本文章主要講到兩種php 字符串替換函數 str_replace與substr_replace前一種是替換所有haystace中的needle,並返回haystace替換後的結果,而substr_replace替換字符串string中的一部分具體哪能一部分則取決於起始位置和可選參數length的值
最常用str_replace()
  
  函數原型:
  
  mixed str_replace(mixed needle,mixed new_needle,mixed haystace[,int &count])
  
  函數用new_needle替換所有haystace中的needle,並返回haystace替換後的結果.可選的第四個參數count,它包含要執行的替換操作次數.
  
  例:
  

 代碼如下 復制代碼   <?php
  function n2n() {
   =array('1','2','3','4','5','6','7','8','9','0');
   =array("7","8","9","0","1","2","3","4","5","6");
   =strlen();
   for(=0;<;++){
    for(=0;<10;++)
  if(==){
   = str_replace(, , );
   break;
  }
   }
   return ;
  }
 
  ="1234abc56";
  echo n2n();
 
 ?>


  
  函數substr_replace()則用來在給定位置中查找和替換字符串中特定的子字符串.原型:
  
  string substr_replace(string string,string replacement,int start,int[length]);

 代碼如下 復制代碼  <?php
 echo substr_replace("hello world","earth",6);//hello earth
 ?>


 
 負數時
 

 代碼如下 復制代碼  <?php
 substr_replace('huevos','x',-2,-2); //huevxos
 substr_replace('huevos','x',-2,-3); //huevxos
 substr_replace('huevos','x',-2,-3); //huevxos
 ?>


  
  函數使用字符串replacement替換字符串string中的一部分具體哪能一部分則取決於起始位置和可選參數length的值.
  
  start的值代表要替換字符串位置的開始偏移量.如果它為0或是一個正值,就是一個從字符串開始處計算的偏移量;如果它是一個負值,就是從字

copyright © 萬盛學電腦網 all rights reserved