Home Backend Development PHP Tutorial mysql_escape_string()函数用法分析_PHP

mysql_escape_string()函数用法分析_PHP

May 27, 2016 am 10:18 AM
m Function usage

本文实例讲述了mysql_escape_string()函数用法。分享给大家供大家参考,具体如下:

使用 mysql_escape_string() 对查询中有疑问的数据进行编码:

有一些数据例如:

char query(1024);
sprintf (query, "select * from my_tbl where name = '%s'",name);

Copy after login

如果这个时候,name 中包含了如: "0'Malley,Brian" 这样的数据就会产生这样的查询语句: select * from my_tbl where name = '0'Malley,Brian' 这样就导致了错误的产生。

调用 mysql_escape_string() 的过程如下:

my $item = "aaa's bbb"
my $escape_item = mysql_escape_string($item);

Copy after login

此时,escape_item 的内容是: aaa\'s bbb

PS:在PHP5.3中已经弃用该函数,因此仅对该函数有所了解即可,不推荐使用。

更多关于PHP相关内容感兴趣的读者可查看本站专题:《php程序设计安全教程》、《php安全过滤技巧总结》、《PHP运算与运算符用法总结》、《PHP网络编程技巧总结》、《PHP基本语法入门教程》、《php操作office文档技巧总结(包括word,excel,access,ppt)》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家PHP程序设计有所帮助。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

AITO's Wenjie M9 panoramic smart flagship SUV is about to debut AITO's Wenjie M9 panoramic smart flagship SUV is about to debut Sep 26, 2023 pm 02:41 PM

According to news on September 25, Huawei Mall has begun accepting reservations for AITO’s Wenjie M9 car. This car is positioned as a panoramic smart flagship SUV with eye-catching features. Consumers only need to pay a deposit of 5,000 yuan, which can be used to offset the final payment of up to 10,000 yuan. The new car will be available in two versions, namely the extended-range version and the pure electric version. The price is expected to be between 500,000 yuan and 600,000 yuan, making it competitive in the high-end SUV market. Wenjie M9 is expected to be officially launched in the fourth quarter of 2023. No information on its specific configuration has been disclosed yet. It is understood that the M9 model adopts a family-oriented design language. Judging from the two official pictures, the side lines of the vehicle are smooth, and the door handles adopt a hidden design, adding technology to the entire vehicle.

Detailed explanation of the usage of PHP key_exists() function Detailed explanation of the usage of PHP key_exists() function Jun 26, 2023 pm 10:37 PM

The key_exists() function in PHP is used to check whether the specified key exists in the array. This function is very important because when working with arrays you need to check whether a certain key exists in the array in order to process the data correctly. The syntax of the key_exists() function is as follows: boolkey_exists(mixed$key, array$array) where $key represents the key to be checked for existence, and $array represents the array to be searched. If the specified key is stored

Detailed explanation of the usage of PHP's array_column() function Detailed explanation of the usage of PHP's array_column() function Jun 27, 2023 pm 12:58 PM

In PHP, arrays often need to be processed and manipulated. Sometimes, you need to obtain a specific column of data from a multi-dimensional array. In this case, you can use the array_column() function to achieve this. This article will introduce the usage of array_column() function in detail. 1. What is array_column() function array_column() is a PHP function used to obtain a specified column of data from a multi-dimensional array. This function was introduced in PHP5.5 version

Detailed explanation of the usage of Vue.filter function and implementation of data filtering Detailed explanation of the usage of Vue.filter function and implementation of data filtering Jul 24, 2023 pm 10:39 PM

Detailed explanation of the usage of Vue.filter function and implementation of data filtering In Vue.js, we often need to perform some specific processing and filtering of data to meet the needs of page display and business logic. The Vue.filter function provides a simple and flexible way to implement data filtering. This article will introduce the usage of Vue.filter function in detail and give some practical example code. 1. Basic usage of Vue.filter function The Vue.filter function is used to register a full

What is a digital virtual currency? Where to buy digital virtual currency? What is a digital virtual currency? Where to buy digital virtual currency? Feb 14, 2025 pm 05:06 PM

Digital virtual currency, also known as cryptocurrency or virtual currency, is a decentralized digital currency. Unlike traditional currencies, digital virtual currencies are not controlled by central banks or governments, but are traded through computer networks on the Internet. The security of digital virtual currencies is guaranteed by complex cryptographic algorithms, making them non-forgery, anonymity and global circulation. With the popularity of digital virtual currencies, purchasing channels are also increasing.

Parsing the explode() function in PHP Parsing the explode() function in PHP Feb 20, 2024 pm 01:48 PM

An explanation of how to use PHP's explode() function requires specific code examples. In PHP programming, it is often necessary to split a string and split a string into multiple small parts. In this case, you can use PHP's explode() function. . The function of explode() function is to split a string into multiple substrings according to the specified delimiter and store these substrings in an array. Let's explain the usage of the explode() function in detail and provide some specific code examples.

Detailed explanation of the usage of PHP's strip_tags() function Detailed explanation of the usage of PHP's strip_tags() function Jun 27, 2023 am 09:29 AM

Detailed explanation of the usage of PHP's strip_tags() function In PHP programming, the strip_tags() function is one of the very useful functions. It can help us remove HTML and PHP tags, leaving only plain text content. In this article, we will explain the usage of strip_tags() function in detail and provide some useful examples. The basic syntax of the strip_tags() function is as follows: strip_tags(string$str,string

CentOS7 deploys cicd service in Jenkins CentOS7 deploys cicd service in Jenkins Feb 20, 2024 am 08:30 AM

Project address https://www.jenkins.io/zh/Set host name: hostnamectlset-hostnamejenkins personalized host name without time echo"PS1='[e[37;1m][[e[36;40m][e [32;40m]u[e[33;40m]@[e[31;40m]h[e[34;40m]w[e[37;1m]]\$[e[m]'">>. bashrc closes CentOS7's own firewall service systemctldisablefirewalld&&systemctlstopfirewa

See all articles