<?php $text = 'This is a test'; echo strlen($text); // 14 echo substr_count($text, 'is'); // 2 // 字符串被简化为 's is a test',因此输出 1
確定! 回上一頁