返回列表 發帖

stripos可計算甲字串在乙字串裡第一次出現的位置

  1. <html>
  2.     <head>
  3.         <title>stripos 介紹</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 = 'E';
  10.             echo stripos($string, $search);    //計算 search字串在$string字串裡第一次出現的位置, i代表不分大小寫
  11.         ?>
  12.     </body>
  13. </html>
複製代碼
May

返回列表