Skip to content
  • This project
    • Loading...
  • Sign in

杨建斌 / page

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 1
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • page
  • application
  • libraries
  • LoanAfter
  • drivers
  • LoanAfter_enum.php
  • Zelig's avatar
    导入 · c658d51f
    Zelig committed 2018-03-28 22:31:47 +0800
    c658d51f
LoanAfter_enum.php 411 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

class LoanAfter_enum extends CI_Driver
{
    public $CI;

    public function __construct () {
        $this->CI = &get_instance();
    }

    public function prosecute () {
        $url = $this->CI->config->item('apiBaseUrl') . 'loanAfter/enum/prosecute';
        $result = file_get_contents($url);
        $json = json_decode($result, true);
        $ret = $json['data'];

        return $ret;
    }
}