search
HomeBackend DevelopmentPHP Tutorial小胖学PHP总结4-PHP的字符串操作

1.字符串连接

字符串是通过半角句号“.”来连接的,可以把两个或两个以上的字符串连接成一个字符串。

2.去除字符串首尾空格和特殊字符

PHP中提供了trim()函数去除字符串左右两边的空格和特殊字符,ltrim()函数去除字符串左边的空格和特殊字符,rtrim()函数是去除字符串右边的空格和特殊字符。

<?php //去除特殊字符串    $str = "\r\r(:@_@ 闯世界 哈哈哈 @_@:)";    echo trim($str).'<br>';  //去除所有的特殊字符    echo trim($str,"\r\r(::)").'<br>';    //去除制定的特殊字符    echo ltrim($str,"\r\r").'<br>';     //去除左边制定的特殊字符    echo rtrim($str,"@_@").'<br>';    //去除右边制定的特殊字符?>
3.转义、还原字符串数据

字符串转义和还原有两种:第一种是手动转义、还原字符串数据,第二种是自动转义、还原字符串数据。

手动转义方式,只是需要添加反斜杠“\”就可以了,下面说一下自动转义的函数:addslashes(string)为字符串中的转义字符添加\,addcslashes(string charlist)函数是实现字符串中指定的字符进行转义,stripslashes()用来恢复上边两个函数所转义的字符串。

<?php //自动转义、还原字符串    $str1 = "select * from tb_book WHERE bookName = 'PHP5从开发到入门'";    $a = addslashes($str1);   //自动转义所有的字符串    $c = addcslashes($str1,"from");   //转义特定的字符串    echo '$a转义后的字符串:'.$a.'<br>';    echo '$str1转义前的字符串:'.$str1.'<br>';    echo '$c转义特定的字符串:'.$c.'<br>';    $b = stripcslashes($str1);    echo '$b还原后的字符串:'.$b.'<br>';    echo '$a还原前的字符串:'.$a.'<br>';    echo '<p>';?></p>
4.获取字符串长度截取字符串,以及进行字符串比较

<?php //字符串比较函数    $str2 = "my name is haogaoming";    echo '$str2的字符串长度为:'.strlen($str2).'<br>';   //字符串的长度    echo substr($str2,0).'<br>';        //从0位置截取全部长度字符串    echo substr($str2,4,10).'<br>';     //从第四个位置截取字符串,包含第四个位置,位置是从下标0开始    echo substr($str2,-4,4).'<br>';     //从倒数第四个位置截取,不包含第四个位置    echo substr($str2,0,-4).'<br>';     //从第0位置截取,一直到最后第四位,包含第四位    //两个比较字符串函数 :strcmp(区分大小写),strcasecmp(不区分大小写);strncmp(比较两个字符串中前几个字符串是否一样);    //strstr(检索字符串,从这个字符串首次出现的位置到末尾的字符);strchr(从字符串后序的位置开始检索字符串,和前者相反);    //substr_count(检索特定的字符串在某一个字符串中出现的次数)    //替换函数:str_ireplace(search,replace,subject,int &count)查找某一串字符串然后进行替换,search代表了查找需要替换的字符串,replace代表了要替换的值    //subject代表了整个字符串,count代表了替换工作执行了多少次,这个函数不区分大小写,如果要区分大小写就用str_replace函数    //替换函数:substr_replace(string,replace,start,length)对string字符串从start开始到length之间的字符串替换为replace    echo '<p>';?></p>
5.格式化字符串

<?php //格式化数字字符串    $num = 118888.8321212;    echo number_format($num).'<br>';    echo number_format($num,2).'<br>';    echo number_format($num,2,',','.').'<br>';    //分割字符串    $str3 = 'PHP 编程词典@NET 编程字典@ASP 编程字典@JSP 编程字典';    $str_array = explode('@',$str3);    echo '拆分的字符串为:';    print_r($str_array);    echo '<br>';    //合成字符串    echo '合成字符串函数:';    echo implode("合成",$str_array).'<br>';?>



版权声明:本文为博主原创文章,未经博主允许不得转载。

Statement
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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

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-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

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.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

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' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

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

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

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

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

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

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

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

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

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:

See all articles

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use