PHP code example of kingbes / jump

1. Go to this page and download the library: Download kingbes/jump library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kingbes / jump example snippets


use Kingbes\Jump\Jump; //引入

class IndexController extends Jump
{
    public function index(Request $request)
    {
        // @param mixed $msg — 提示信息
        // @param string $url — 跳转的URL地址
        // @param mixed $data — 返回的数据
        // @param integer $wait — 跳转等待时间
        // @param array $header — 发送的Header信息
        return $this->success("ok"); //返回成功页面
    }
}

use Kingbes\Jump\Jump; //引入

class IndexController extends Jump
{
    public function index(Request $request)
    {
        // @param mixed $msg — 提示信息
        // @param string $url — 跳转的URL地址
        // @param mixed $data — 返回的数据
        // @param integer $wait — 跳转等待时间
        // @param array $header — 发送的Header信息
        return $this->error("no"); //返回失败页面
    }
}

use Kingbes\Jump\Jump; //引入

class IndexController extends Jump
{
    public function index(Request $request)
    {
        // @param array $data — 要返回的数据
        // @param integer $code — 返回的code
        // @param string $msg — 提示信息
        // @param array $header — 发送的Header信息
        return $this->result(["name" => "webman"]); //返回json
    }
}


return [
    'enable' => true,
    'jump' => BASE_PATH . '/vendor/kingbes/jump/src/jump.html' // 配置模板
];