返回列表 發帖

substr_count 計算 甲字串在乙字串裡出現的次數

  1. <html>
  2.     <head>
  3.         <title>substr_count 介紹</title>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     </head>
  6.     <body>
  7.         <?php
  8.             $string = 'hello world!!!';
  9.             $search = '!';
  10.             echo substr_count($string, $search);    //計算 search字串在$string字串裡出現的次數
  11.         ?>
  12.     </body>
  13. </html>
  14. </html>
複製代碼
May

返回列表