이 기사의 예에는 PHP에서 일반적으로 사용되는 문자열 함수가 요약되어 있습니다. 참고를 위해 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다:
nl2br
기능: 줄 바꿈을 0c6dc11e160d3b678d68754cc175188a
<?php $str = "cat isn't \n dog"; $result = nl2br($str); echo $result; /**结果 cat isn't dog */
rtrim
기능: 오른쪽 공백 지우기<?php $str = "Hello world "; echo strlen($str)."<br>"; $result = rtrim($str); echo strlen($result); /**结果 14 11 */strip_tags기능: 문자열에서 html, php 태그 지우기
<?php $str = "<font color = 'red'>Hello world</font>"; $result = strip_tags($str); echo $result; /**结果 Hello world */strtolower 및 strtoupper함수: 대문자와 소문자로 변환
<?php $str = "Hello World!"; $result = strtolower($str); echo $result."<br>"; $result = strtoupper($str); echo $result; /**结果 hello world! HELLO WORLD! */trim함수: 앞뒤 공백 제거
<?php $str = " Hello World! "; $result = trim($str); echo $str."<br>"; echo $result."<br>"; echo strlen($str)."<br>"; echo strlen($result); /**结果 Hello World! Hello World! 16 12 */str_ireplace함수: 바꾸기
<?php $str = "zhang san"; $result = str_ireplace("zhang","li",$str); echo $str."<br>"; echo $result; /**结果 zhang san li san */str_repeat 기능: 문자열을 여러 번 반복
<?php $str = "Hello jiqing!"; $result = str_repeat($str,4); echo $str."<br>"; echo $result; /**结果 Hello jiqing! Hello jiqing!Hello jiqing!Hello jiqing!Hello jiqing! */str_replace기능: 대소문자 구분 대체
<?php $str = "hello jiqing!"; $result1 = str_ireplace("Hello","Hi",$str); //不区分大小写 $result2 = str_replace("Hello","Hi",$str); //区分大小写 echo $str."<br>"; echo $result1."<br>"; echo $result2."<br>"; /**结果 hello jiqing! Hi jiqing! hello jiqing! */str_word_count
함수: 문자열 단어 수 반환
<?php $str = "hello jiqing a!"; $result1 = str_word_count($str); //返回个数 $result2 = str_word_count($str,1); //返回数组 echo $str."<br>"; echo $result1."<br>"; print_r($result2); /**结果 hello jiqing a! 3 Array ( [0] => hello [1] => jiqing [2] => a ) */strlen함수: 문자열 길이 반환
<?php $str = "hello jiqing a!"; $result = strlen($str); echo $result; /**结果 15 */substr_count함수: 위치 계산 한 문자열의 다른 문자열
<?php $str = "hello jiqing ,hello jim!"; $result = substr_count($str,"hello"); echo $result; /**结果 2 */substr_replace 수 함수: 특정 위치에서
<?php $str = "hello jiqing ,hello jim!"; $result = substr_replace($str,"zhangsan",6); echo $result."<br>"; $result = substr_replace($str,"zhangsan",6,6);//从某个位置替换,替换几个字符串 echo $result; /**结果 hello zhangsan hello zhangsan ,hello jim! */substr 대체 기능: 하위 문자열
<?php $str = "abcdef"; $result = substr($str,0,1); //从第0个开始,获取1个 echo $result."<br>"; $result = substr($str,0,-1);//从第0个开始,获取到除了最后一个的字符串 echo $result."<br>"; $result = substr($str,2,-1);//从第2个开始,获取到除了最后一个的字符串 echo $result."<br>"; $result = substr($str,-3,-1);//从第-3个开始,获取到除了最后一个的字符串 echo $result."<br>"; $result = substr($str,-3,1);//从第-3个开始,获取到除了最后一个的字符串 echo $result."<br>"; /**结果 a abcde cde de d */implode기능: 배열을 문자열로 변환
<?php $array = array("2016","6","3"); $date = implode("/",$array); echo $date; /**结果 2016/6/3 */md5기능: md5로 문자열 암호화
<?php $str = "Hello world"; $result = md5($str); echo $result; /**结果 3e25960a79dbc69b674cd4ec67a72c62 */위는 ( 실용) 기사) PHP에서 자주 사용되는 문자열 함수 예제 요약 [변환, 치환, 계산, 가로채기, 암호화] 관련 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!