Commonly used string processing functions in php
下面只提供几个简单常用的函数,chop执行去除空格处理,get_html_translation_table返回转化列表到变量,定义包括HTML编码的字符串htmlentities,htmlspecialchars_decode 定义包含HTML特殊字符的字符串,nl2br quotemeta rtrim等.
定义和用法:chop() 函数从字符串的末端开始删除空白字符或其他预定义字符,该函数的 rtrim() 函数的别名.
语法:chop(string,charlist),代码如下:
$str="i'm a teacher "; //定义字符串
$result=chop($str); //执行去除空格处理
echo $result; //输出结果
定义和用法:get_html_translation_table() 函数返回被 htmlentities() 和 htmlspecialchars() 函数使用的翻译表.
语法:get_html_translation_table(function,quotestyle),代码如下:
/*/
$trans=get_html_translation_table(html_entities); //返回转化列表到变量
print_r($trans); //输出转换表
$str="hallo &
$encoded=strtr($str,$trans); //查找字符
echo $encoded; //输出结果
//
$str="a 'quote' is bold"; //定义包括html编码的字符串
echo htmlentities($str); //输出经过处理的字符串
echo htmlentities($str, ent_quotes); //加上可选参数后的输出结果
//
$str='
this -> "
'; //定义包含html特殊字符的字符串echo htmlspecialchars_decode($str); //输出转换后的内容
echo "
";
echo htmlspecialchars_decode($str,ent_noquotes); //不对引号进行编码的输出结果
//
$str="cat isn't n dog"; //定义包含换行符的字符串
$result=nl2br($str); //执行转换操作
echo $result; //输出转换后的结果
//
$str="hello world.(can you hear me?)"; //定义包含元字符的字符串
$result=quotemeta($str); //执行转换操作
echo $result; //输出转换后的结果
//开源代码phpfensi.com
//
$str="hello world "; //定义末尾有空格的字符串
$result=rtrim($str); //执行转换操作
echo $result; //输出转换后的结果

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics



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.

Alipay PHP...

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

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...
