We use regular expressions, and mastering various functions and structures is just a means, and solving actual problems is the real purpose. To solve the real problem, you must have an idea to solve the problem. In the final analysis, the functions of regular expressions can be summarized into three kinds of logic. For the convenience of expression, we call them AND, OR and NOT respectively.
When I was using CI recently to build a personal salary management system, I needed to verify whether the user was logged in and using specific functions, so I used the regular expression - non. The requirements are as follows:
The paths /user, /user/login, /user/register do not need to be intercepted. In fact, paths such as /profile, /company, /work must be intercepted, and then check whether user_id exists in the session. If not, jump Go to /user/login
Initial observations:
Just match /user. The preliminary code is as follows:
01
02
class Acl {
03
04
private $CI;
05
06
Public function __construct() {
07
$this->CI = &get_instance();
08
}
09
10
Public function auth() {
11
If (!preg_match('/^user.*$/', uri_string())) {
12
$user_id = $this->CI->session->userdata('user_id');
13
If(empty($user_id)) {
14
redirect('/user');
15
return;
16
}
17
}
18
}
19
}
During the test, I discovered that I missed detecting user/change_password. This function requires the customer to log in first. Here, user/change_password must be excluded in user.*, which means that the "non" in the regular expression must be used as mentioned earlier.
"Not" is the most difficult logical relationship to handle in regular expressions. Because there is no direct corresponding structure, the processing of "not" is more difficult.
The simplest "non" means that a certain character cannot appear here. This is usually very intuitive. It seems that it can be solved by using the exclusive character group [^...]. For example, when matching double quote strings, the first and last double quotes are easy to match. The content is definitely not double quotes (escaping is not considered for the time being), so it can be represented by [^"], and its length is uncertain. So it is qualified with *, so the whole expression is "[^"]*", which is very simple.
But are things really that simple? Let’s take the example of cat and cut. If you want to match words starting with c and ending with t, but don’t want to match cut, you can write c[^u]t. Is that okay?
This expression means: the first letter is c, followed by a character that is not u, followed by t. Yes, it does not match cut, it can also match cat. However, it cannot match chart, conduct, court, etc., because [^u] means: match a character that is not u.
Then, change [^u] to [^u]+, this should solve the problem. But is it really so? [^u]+ means one or several (up to infinity) characters, but each character cannot be u. Therefore, although c[^u]+t can match cat and chart, it cannot match conduct and court.
In fact, the path matching problem between cut and me can be solved by using the sequential negative look-around function.
(?!cut) is used for this kind of judgment. It judges whether the subsequent string can be matched by cut and will not move the "current position". So we put it at the very beginning of the expression and get (?!cut)c[a-z]+t. The logic of this expression is: only if the string to the right of the current position cannot be matched by cut, start from here and try c[a-z]+t to the right.
If we go one step further and need to exclude cat and cut, we can change the negative order look around to (?!c[au]t). This will ensure that the matched one is definitely not cat or cut. www.2cto.com
Back to the top question. Just go to the code, the code is as follows:
01
02
class Acl {
03
04
private $CI;
05
06
Public function __construct() {
07
$this->CI = & get_instance();
08
}
09
10
Public function auth() {
11
If (!preg_match('/^(?!user/change_password)user.*$/', uri_string())) {
12
$user_id = $this->CI->session->userdata('user_id');
13
If(empty($user_id)) {
14
redirect('/user');
15
return;
16
}
17
}
18
}
19
}
Author: kxt

命名管道是一种在操作系统中相对比较低级的进程通信方式,它是一种以文件为中介的进程通信方式。在Go语言中,通过os包提供了对命名管道的支持。在本文中,我们将介绍如何在Go中使用命名管道来实现进程间通信。一、命名管道的概念命名管道是一种特殊的文件,可以被多个进程同时访问。在Linux系统中,命名管道是一种特殊的文件类型,它们存在于文件系统的某个位置上,并且可以在

在Go语言中,使用第三方库是非常方便的。许多优秀的第三方库和框架可以帮助我们快速地开发应用程序,同时也减少了我们自己编写代码的工作量。但是如何正确地使用第三方库,确保其稳定性和可靠性,是我们必须了解的一个问题。本文将从以下几个方面介绍如何使用第三方库,并结合具体例子进行讲解。一、第三方库的获取Go语言中获取第三方库有以下两种方式:1.使用goget命令首先

PHP正则表达式是一种针对文本处理和转换的有力工具。它可以通过解析文本内容,并按照特定的模式进行替换或截取,达到有效管理文本信息的目的。其中,正则表达式的一个常见应用是替换以特定字符开头的字符串,对此,我们进行如下的讲解

Golang正则表达式使用管道符|来匹配多个单词或字符串,将各个选项作为逻辑OR表达式分隔开来。例如:匹配"fox"或"dog":fox|dog匹配"quick"、"brown"或"lazy":(quick|brown|lazy)匹配"Go"、"Python"或"Java":Go|Python|Java匹配单词或4位邮政编码:([a-zA

php用正则去除中文的方法:1、创建一个php示例文件;2、定义一个含有中文和英文的字符串;3、通过“preg_replace('/([\x80-\xff]*)/i','',$a);”正则方法去除查询结果中的中文字符即可。

<p>Windows 系统上的 OneDrive 应用程序允许您将文件存储在高达 5 GB 的云上。OneDrive 应用程序中还有另一个功能,它允许用户选择一个选项,是将文件保留在系统空间上还是在线提供,而不占用您的系统存储空间。此功能称为按需文件。在这篇文章中,我们进一步探索了此功能,并解释了有关如何在 Windows 11 电脑上的 OneDrive 中按需使用文件的各种选项。</p><h2>如何使用 On

近年来,WebSocket技术已经成为了Web开发中不可或缺的一部分。WebSocket是一种在单个TCP连接上进行全双工通信的协议,它使得客户端和服务器之间的通信更加流畅和高效。如今,很多现代的Web应用程序都使用了WebSocket技术,例如实时聊天、在线游戏以及实时数据可视化等。Go语言作为一个现代的编程语言,自然也提供了很好的支持WebSock

在本文中,我们将学习如何使用PHP正则表达式删除HTML标签,并从HTML字符串中提取纯文本内容。 为了演示如何去掉HTML标记,让我们首先定义一个包含HTML标签的字符串。


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

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
