Manage privacy settings
Developer
개발하다가 막힌 곳을 뻥 뚫은 순간에 대한 기록
안녕하세요
프로그램 과정에서 막혔던 문제들에 대한 해결책 정리
페이지 목록
홈
레이블이
Reverse find
인 게시물을 표시합니다.
모든 게시물 표시
레이블이
Reverse find
인 게시물을 표시합니다.
모든 게시물 표시
2018년 2월 13일 화요일
PHP 우측 검색 (마지막으로 나오는 문자 검색)
strrchr
(PHP 4, PHP 5, PHP 7)
strrchr
—
Find the last occurrence of a character in a string
Description
¶
string
strrchr
(
string
$haystack
,
mixed
$needle
)
This function returns the portion of
haystack
which starts at the last occurrence of
needle
and goes until the end of
haystack
.
출처: http://php.net/manual/en/function.strrchr.php
이전 게시물
홈
피드 구독하기:
글 (Atom)
haystack
which starts at the last occurrence ofneedle
and goes until the end ofhaystack
.