When building URLs in code, you can use string concatenation to collect all strings:
$url = $domain.'/index.php?option='.$option.'&view='.$view.'¶m1='.$value1;
This approach is even convenient for short strings. However, it is not so convenient and intuitive if there are many parameters or need to be standardized/cleaned in the process. For example, part of the URL might contain a leading slash (the slash at the beginning of the URL fragment), and the incoming domain name of the request might also end in a slash, so we get a bad URL with a double slash somewhere in the middle ……
To standardize and unify URL retrieval tasks, Joomla provides the JoomlaUriUri class. In Joomla 1.6 and earlier, it was called JUri. This class handles URLs according to the RFC3986 standard and is responsible for parsing or assembling URLs from their various parts.
Example: Get specific parameters from URL
use Joomla\Uri\Uri; $url = 'https://web-tolk.ru/dev/biblioteki?param=value'; $uri = new Uri($url); // 此处输出'value' echo $uri->getVar('param');
You might say, yes, there is a native PHP function parse_url
... but the Uri class ensures safe operations on UTF-8 characters in URLs, including Cyrillic domain names. To avoid writing various checks yourself, you can use Joomla core functionality.
How to build the required URL in Joomla code
It’s also very simple here:
use Joomla\Uri\Uri; $uri = new Uri; $uri->setHost('web-tolk.ru'); $uri->setScheme('https'); // setPath()以前导斜杠开头 $uri->setPath('/dev/biblioteki'); // GET参数可以作为数组传递 $vars = [ 'param1' => 'value1', 'param2' => 'value2', 'param3' => 'value3', ]; $uri->setQuery($vars); // 将URL作为字符串输出 echo $uri->toString();
The hierarchical structure of the Uri class in Joomla is designed so that the getter method is located in the AbstractUri class, and the setter method is located in the Uri class. You can view the setter method in the libraries/vendor/joomla/uri/src/Uri.php file. You can view the getter method in the libraries/vendor/joomla/uri/src/AbstractUri.php file.
If you use PHPStorm, it understands Joomla completely and will tell you everything you need.
You can refer to the old documentation page, which is still applicable to a large extent and has been adapted for the use of namespaces.
Uri structure:
<code> foo://example.com:8042/over/there?name=ferret#nose \_/ \______________/\_________/ \_________/ \__/ | | | | | scheme authority path query fragment</code>
Joomla Community Resources
- https://www.php.cn/link/4e79e96ebb5671bdb50111f18f263003
- Joomla Community Chat on Mattermost
- WebTolk Joomla Extension
- This article in Russian
The above is the detailed content of Joomla tip: Use the Joomla\Uri\Uri class to create a URL.. For more information, please follow other related articles on the PHP Chinese website!

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
