Home Backend Development PHP Tutorial Php学习之路3(字符串操作)

Php学习之路3(字符串操作)

Jun 13, 2016 am 10:58 AM
echo quot str string

Php学习之路三(字符串操作)

<?php/*String [email&#160;protected]=lixingle * string trim(string $str [,string $charlist); * ltrim(string $str [,string $charlist);//取出做空格 * rtrim(string $str [,string $charlist)  取出右空格 * */	$str1="\t\t   myphpa  ";	echo var_export($str1);	echo var_export(trim($str1));//取出空格echo "<br>";?><?php /*字符串比较函数 * strcmp(string $str1,string $str2)区分大小写的比较 * strcasecmp(string $str1,string $str2)不区分大小写的比较 * strncasecmp(string $str1,string $str2,int leng)用于不区分大小写的字符串的比较 * strncmp(string $str1,string $str2,int leng)用于字符串选择性的比较,区分大小写 * 第三个参数为要比较的长度 *  * */echo strcmp("abcD","abcd")."<br>";//返回-1因为小写字母的ASCII值大于大写祖母的值echo strcasecmp("abcD","abcd")."<br>";//返回0  ?><?php /*字符串的查找和匹配 * String strstr(string $haystack,string $needle); * $haystack为母字符串。$needle为查找字符串. * String strrchr(string $haystack,string $needle); *  $haystack为母字符串。$needle为查找字符串. *   *  区别:两个函数的区别是strstr();用来查找第一次出现的位置,返回从此次为止到结束的字符串; *  			   strrchr()用来查找最后出现的位置,返回从此次为止到结束的字符串; * */	$needle="changchao";	$parent="I love changchao,heihei,changchao,hehe!!!";		echo strrchr($parent,$needle)."<br>";	echo strstr($parent,$needle)."<br>";		$text="This is a test";	$needle="is";	echo strlen($text)."<br>";	echo substr_count($text, $needle)."<br>";//返回结果为2	echo substr_count($text, $needle,3)."<br>";//从第四个字符开始查找。返回结果为1	echo substr_count($text, $needle,3,3)."<br>";//从第四个字符开始查找。查找长度为3.返回结果为0/* *Int strrpos(string $haystack,mixed $needle,int len); //查找最后一次的位置, *														$needle如果是字符串只取第一个字符 * int strpos(string $haystack,string $needle,int len); //查找第一次的位置 *  * string str_replace(string $str1,string $str2,string $str3); * $str1为要被替换的字符串。$str2为新字符串,$str3为原字符串 * string substr_replace(string $str1,string $str2,string $str3,int n); * $str1为要被替换的字符串。$str2为新字符串,$str3为原字符串,n为替换长度 * */	echo str_replace("World","PHP","Hello World!")."<br>";//输出Hello PHP!		?><?php /*分割字符串: * Array explode(string $separator,string $string,[,int $limit]); * $separator设置一个分隔符号,不能为空。$string为所操作的字符串,$limit为将字符串分割为多少个字符串 *  * */	$date="localhost/root/123456";	list($host,$user,$password)=explode("/",$date);//$date分割成含三个变量的数组	echo "\$host=".$host."<br>";	echo "\$user=".$user."<br>";	echo "\$password=".$password."<br>";?>
Copy after login

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks 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)

Convert basic data types to strings using Java's String.valueOf() function Convert basic data types to strings using Java's String.valueOf() function Jul 24, 2023 pm 07:55 PM

Convert basic data types to strings using Java's String.valueOf() function In Java development, when we need to convert basic data types to strings, a common method is to use the valueOf() function of the String class. This function can accept parameters of basic data types and return the corresponding string representation. In this article, we will explore how to use the String.valueOf() function for basic data type conversions and provide some code examples to

How to convert char array to string How to convert char array to string Jun 09, 2023 am 10:04 AM

Method of converting char array to string: It can be achieved by assignment. Use {char a[]=" abc d\0efg ";string s=a;} syntax to let the char array directly assign a value to string, and execute the code to complete the conversion.

2w words detailed explanation String, yyds 2w words detailed explanation String, yyds Aug 24, 2023 pm 03:56 PM

Hello everyone, today I will share with you the basic knowledge of Java: String. Needless to say the importance of the String class, it can be said to be the most used class in our back-end development, so it is necessary to talk about it.

Use Java's String.replace() function to replace characters (strings) in a string Use Java's String.replace() function to replace characters (strings) in a string Jul 25, 2023 pm 05:16 PM

Replace characters (strings) in a string using Java's String.replace() function In Java, strings are immutable objects, which means that once a string object is created, its value cannot be modified. However, you may encounter situations where you need to replace certain characters or strings in a string. At this time, we can use the replace() method in Java's String class to implement string replacement. The replace() method of String class has two types:

Five selected Go language open source projects to take you to explore the technology world Five selected Go language open source projects to take you to explore the technology world Jan 30, 2024 am 09:08 AM

In today's era of rapid technological development, programming languages ​​are springing up like mushrooms after a rain. One of the languages ​​that has attracted much attention is the Go language, which is loved by many developers for its simplicity, efficiency, concurrency safety and other features. The Go language is known for its strong ecosystem with many excellent open source projects. This article will introduce five selected Go language open source projects and lead readers to explore the world of Go language open source projects. KubernetesKubernetes is an open source container orchestration engine for automated

Go language development essentials: 5 popular framework recommendations Go language development essentials: 5 popular framework recommendations Mar 24, 2024 pm 01:15 PM

&quot;Go Language Development Essentials: 5 Popular Framework Recommendations&quot; As a fast and efficient programming language, Go language is favored by more and more developers. In order to improve development efficiency and optimize code structure, many developers choose to use frameworks to quickly build applications. In the world of Go language, there are many excellent frameworks to choose from. This article will introduce 5 popular Go language frameworks and provide specific code examples to help readers better understand and use these frameworks. 1.GinGin is a lightweight web framework with fast

Use java's String.length() function to get the length of a string Use java's String.length() function to get the length of a string Jul 25, 2023 am 09:09 AM

Use Java's String.length() function to get the length of a string. In Java programming, string is a very common data type. We often need to get the length of a string, that is, the number of characters in the string. In Java, we can use the length() function of the String class to get the length of a string. Here is a simple example code: publicclassStringLengthExample{publ

How to use java's String class How to use java's String class Apr 19, 2023 pm 01:19 PM

1. Understanding String1. String in JDK First, let’s take a look at the source code of the String class in the JDK. It implements many interfaces. You can see that the String class is modified by final. This means that the String class cannot be inherited and there is no subclass of String. class, so that all people using JDK use the same String class. If String is allowed to be inherited, everyone can extend String. Everyone uses different versions of String, and two different people Using the same method shows different results, which makes it impossible to develop the code. Inheritance and method overriding not only bring flexibility, but also cause many subclasses to behave differently.

See all articles