이 글에서는 주로 thinkPHP 커스텀 클래스의 구현 방법을 소개하고, thinkPHP 커스텀 모델 클래스의 정의와 사용 기술을 예제 형식으로 분석합니다. 도움이 필요한 친구가 참고할 수 있습니다
이 글의 예제에서는 thinkPHP 사용자 정의 클래스. 참조용으로 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.
1. 모델
을 통해<?php /** * 积分模型 api接口 */ class ApiModel{ private $url = 'http://js.yunlutong.com/Customer/Interface'; public function test() { $post_data['action'] = 'sadf'; $post_data['callback'] = '?'; $res = request_post($this->url, $post_data); $firstChar = substr($res,0,1); if ($firstChar =='?') { $res = substr($res,2); $res = substr($res,0,strlen($res)-1); } elseif($firstChar == '(') { $res = substr($res,1); $res = substr($res,0,strlen($res)-1); } dump(json_decode($res,true)); } }
전화,
$Api = D('Api'); $Api->test();
전화는 참 편리하지만 늘 좀 무리한 느낌이 듭니다. 결국 이 D가 데이터베이스를 운영하는 셈이다.
2. 클래스 구현을 도입하여 클래스를 ORG 아래에 넣고
<?php class Integral{ private $url = 'http://js.yunlutong.com/Customer/Interface'; public function test() { $post_data['action'] = 'sadf'; $post_data['callback'] = '?'; $res = request_post($this->url, $post_data); $firstChar = substr($res,0,1); if ($firstChar =='?') { $res = substr($res,2); $res = substr($res,0,strlen($res)-1); } elseif($firstChar == '(') { $res = substr($res,1); $res = substr($res,0,strlen($res)-1); } dump($res); dump(json_decode($res,true)); } } ?>
Call
import("@.ORG.Api.Integral"); $integralApi = new Integral(); $integralApi->test();
자동으로 로드되도록 구성
'APP_AUTOLOAD_PATH' => '@.ORG,@.ORG.Api',
이렇게 하면 편리해요 call Api 폴더에 클래스가 몇 개 있든 자동으로 로드되므로 단일 참조 가져오기("@.ORG.Api.Integral")가 필요하지 않습니다.
위 내용은 이 글의 전체 내용입니다. 모든 분들의 공부에 도움이 되었으면 좋겠습니다.
관련 권장 사항:
php에서 str_pad() 함수 사용에 대한 자세한 설명 bind_param() 함수 자세한 사용법설명
위 내용은 thinkPHP 사용자 정의 클래스 구현 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!