programming/php2 php 문자열 찾기 함수 eregi()eregi('찾을 문자열', '원본문자열'); //대소문자 구분 안함 문자열이 포함되어있는지 검사. 리턴은 1,0ereg()ereg('찾을 문자열', '원본문자열'); //대소문자 구분 함 문자열이 포함되어있는지 검사 리턴은 1,0; strpos() - 문자열이 처음 나타나는 위치를 찾습니다strripos() - 문자열에서 대소문자 구분 없이 문자열의 마지막 위치를 찾습니다$mystring = 'abc'; $findme = 'a'; $pos = strpos($mystring, $findme); //$pos == 0 //세번째 파라미터는 오프셋 디폴트 0,$newstring = 'abcdef abcdef'; $pos = strpos($newstring, 'a', 1); // $pos = 7, .. 2012. 4. 29. stream_context_create http://www.php.net/manual/en/function.file-get-contents.php stream_context_create() 컨텍스트 옵션을 추가할 수 있다. 2012. 4. 10. 이전 1 다음