PHP code example of selnew / think_jump
1. Go to this page and download the library: Download selnew/think_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/ */
selnew / think_jump example snippets
namespace app\controller;
use selnew\think\Jump;
class Test
{
public function index()
{
// return $this->error('error');
return $this->success('success:welcome', 'index/index');
// return $this->redirect('/admin/index/index');
// return $this->result(['username' => 'mirze', 'email' => '[email protected]']);
}