AFNetworking 기초 기존에 유용하게 쓰던 ASIHTTP가 업데이트가 중지된지 한참 되어(ARC도 지원 안 해주시고..) 대체할만한 wrapper class를 찾던 중 AFNetworking을 추천받았다.현재 활발하게 업데이트 되고있으며, 간단한 사용법은 다음과 같다. 참조 사이트: https://github.com/AFNetworking/AFNetworking/wiki/Getting-Started-with-AFNetworking https://github.com/AFNetworking/AFNetworking 불편한 점이 있다면 POST 요청을 할 때 ASIHTTP보다 꽤나 번거롭다는 점이다. 이제 웬만하면 GET으로 보내야겠다는.. ㅎㅎ예제1:Download and Parse JSON AFJSONRequestOperatio.. 더보기 strpos_array() : 여러 번의 strpos 결과를 행렬로 저장할 때 function strpos_array($haystack, $needles, $offset=0) { $matches = array(); //Avoid the obvious: when haystack or needles are empty, return no matches if(empty($needles) || empty($haystack)) { return $matches; } $haystack = (string)$haystack; //Pre-cast non-string haystacks $haylen = strlen($haystack); //Allow negative (from end of haystack) offsets if($offset 더보기 file_get_contents_utf8() : file_get_contents()로 가져온 내용 UTF-8로 바꾸기 다음 code snippet으로 웹에서 긁어온 내용을 UTF-8로 저장할 수 있다. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 27 다음 목록 더보기