thinkphp5.0 URL 地址生成

有两个方法

  1. 使用系统类

  2. 使用助手函数

<?php
use think\Url;
//输出首页地址
Url::build(‘index/index/index‘);
//这个也是输出首页地址
url(‘index/index/index‘);

带参数的URL地址

<?php
use think\Url;
//输出首页地址
Url::build(‘index/index/index‘,‘id=5&name=lizhi‘);
Url::build(‘index/index/index‘,[‘id‘=>5,‘name‘=‘lizhi‘]);
//这个也是输出首页地址
url(‘index/index/index‘,‘id=5&name=lizhi‘);
url(‘index/index/index‘,[‘id‘=>5,‘name‘=‘lizhi‘]);

带域名的URL地址

<?php
use think\Url;
Url::build(‘index/index/[email protected]‘);
url(‘index/index/[email protected]‘);
//相当于,添加二级域名bolg
http://bolg.tp.com/index/index/index.html
//下面是完整格式
Url::build(‘index/index/index‘,‘id=5‘,‘shtml‘,‘www.lizhi.com‘);
url(‘index/index/index‘,‘id=5‘,‘shtml‘,‘www.lizhi.com‘);

添加和删除 入口文件

<?php
use think\Url;
//先用root 在生成url就可以了,下面是添加入口
Url::root(‘/index.php‘);
Url::build(‘index/index/index‘,‘id=5‘,‘shtml‘,‘www.lizhi.com‘);
//下面是删除入口文件名称,默认是删除掉的
Url::root(‘/‘);
Url::build(‘index/index/index‘,‘id=5‘,‘shtml‘,‘www.lizhi.com‘);

原文地址:https://www.cnblogs.com/linqingvoe/p/10983083.html

时间: 2024-10-13 15:44:25

thinkphp5.0 URL 地址生成的相关文章

自定义destoon6.0的地址生成规则

在使用destoon的过程中需要对地址规则进行重写,那么如何实现,destoon的列表的地址规则是定义在/api/url.inc.php,然后又是在include/global.func.php中进行的listpages这个函数调用实现 if($page < 1 || $page > $total) $page = 1; $home_url = $MOD['linkurl'].$CAT['linkurl']; $demo_url = $MOD['linkurl'].listurl($CAT,

Asp.net MVC 用UrlHelper生成url地址的优势

在Asp.net WebForm开发中,我们通过a标签进行跳转时,通常的写法是:<a href="index.aspx">首页</a>, 在Asp.net MVC中我们也可以这样写:<a href="/Home/Index">首页</a>,这就是我要讲的MVC中超链接的第一种方法. Asp.net MVC的请求是通过路由的规则来控制的:系统默认规则如下代码 routes.MapRoute( name: "De

thinkphp5.0 获取URL信息

获取URL信息 $request = Request::instance(); // 获取当前域名 echo 'domain: ' . $request->domain() . '<br/>'; // 获取当前入口文件 echo 'file: ' . $request->baseFile() . '<br/>'; // 获取当前URL地址 不含域名 echo 'url: ' . $request->url() . '<br/>'; // 获取包含域名的

thinkphp5.0和thinkphp3.2的区别不同之处

先看目录结构: thinkphp 5.0的目录结构, 文档:https://www.kancloud.cn/manual/thinkphp5/118008 project 应用部署目录 ├─application 应用目录(可设置) │ ├─common 公共模块目录(可更改) │ ├─index 模块目录(可更改) │ │ ├─config.php 模块配置文件 │ │ ├─common.php 模块函数文件 │ │ ├─controller 控制器目录 │ │ ├─model 模型目录 │

URL地址中中文乱码详解(javascript中encodeURI和decodeURI方法、java.net.URLDecoder.encode、java.net.URLDecoder.decode)

引言: 在Restful类的服务设计中,经常会碰到需要在URL地址中使用中文作为的参数的情况,这种情况下,一般都需要正确的设置和编码中文字符信息.乱码问题就此产生了,该如何解决呢?且听本文详细道来. 1.  问题的引出 在Restful的服务设计中,查询某些信息的时候,一般的URL地址设计为: get /basic/service? keyword=历史 , 之类的URL地址. 但是,在实际的开发和使用中,确是有乱码情况的发生,在后台的读取keyword信息为乱码,无法正确读取. 2. 乱码是如

[LeetCode] Encode and Decode TinyURL 编码和解码小URL地址

Note: This is a companion problem to the System Design problem: Design TinyURL. TinyURL is a URL shortening service where you enter a URL such as https://leetcode.com/problems/design-tinyurl and it returns a short URL such as http://tinyurl.com/4e9iA

thinkphp5.0学习笔记(三)获取信息,变量,绑定参数

1.构造函数: 控制器类必须继承了\think\Controller类,才能使用: 方法_initialize 代码: <?php namespace app\lian\controller; use think\Controller; use think\Db; use think\Request; class Index extends Controller { public function _initialize() { echo 'init|||'; } public function

thinkphp5.0生命周期

本篇内容我们对ThinkPHP5.0的应用请求的生命周期做大致的介绍,以便于开发者了解整个执行流程. 1.入口文件 用户发起的请求都会经过应用的入口文件,通常是 public/index.php文件.当然,你也可以更改或者增加新的入口文件. 通常入口文件的代码都比较简单,一个普通的入口文件代码如下: // 应用入口文件 // 定义项目路径 define('APP_PATH', __DIR__ . '/../application/'); // 加载框架引导文件 require __DIR__ .

java高仿新浪微博短链接地址生成工具ShortUrlGenerator.java

原文:仿新浪微博 短链接地址生成工具 ShortUrlGenerator.java 源代码下载地址:http://www.zuidaima.com/share/1550463378934784.htm 仿新浪微博 短链接地址生成工具 ShortUrlGenerator.java String sLongUrl = "http://www.zuidaima.com/share/1550463378934784.htm"; // 3BD768E58042156E54626860E241E9