search
HomeBackend DevelopmentPHP TutorialWhat are the commonly used strings in php? for example

This article will give you examples of commonly used strings in php. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

//输出一个或多个字符串
//注:echo  不是一个函数(它是一个语言结构), 因此你不一定要使用小括号来指明参数,单引号,双引号都可以$a = "admin1";$b = "adminb";echo $a, $b . "<br>";//使用一个字符串分割另一个字符串
//array explode  ( string $delimiter  , string $string  [, int $limit  ] )
//注:如果设置了 limit 参数并且是正数,则返回的数组包含最多 limit 个元素,而最后那个元素将包含 string 的剩余部分。 如果 limit 参数是负数,则返回除了最后的 -limit 个元素外的所有元素。 如果 limit 是 0,则会被当做 1。$str = 'one|two|three|four';var_dump(explode("|", $str)); //array(4) { [0]=> string(3) "one" [1]=> string(3) "two" [2]=> string(5) "three" [3]=> string(4) "four" }var_dump(explode("|", $str, 1));//array(1) { [0]=> string(18) "one|two|three|four" }var_dump(explode("|", $str, -1));//array(3) { [0]=> string(3) "one" [1]=> string(3) "two" [2]=> string(5) "three" }


//将一个一维数组的值转化为字符串
//implode  ( string $glue  , array $pieces  )
//注:用 glue 将一维数组的值连接为一个字符串。$array = array('lastname', 'email', 'phone');$comma_separated = implode(",", $array);echo $comma_separated;  // lastname,email,phonevar_dump(implode('hello', array()));  // string(0) ""


//使一个字符串的第一个字符小写
// lcfirst  ( string $str  )
//注:只有字符串的第一个是英文字母并且大写才会转换echo lcfirst("我");  //我echo lcfirst("Hello"); //hello


//将字符串的首字母转换为大写 
//ucfirst  ( string $str  )echo ucfirst("world");  //World


//将字符串中每个单词的首字母转换为大写 
//ucwords  ( string $str  )
//注:如果首字符是字母转换为大写字母echo ucwords("i am yang"); //I Am Yang


//将字符串转化为小写 
//strtolower  ( string $str  )
//注:如果存在字母则转换为小写字母echo strtolower("我 Is Yang"); //我 is yang


//将字符串转化为大写
//strtoupper  ( string $string  )
//注:如果存在字母则转换为大写字母echo strtoupper("我 is yang"); //我 IS YANG


//计算字符串的 MD5 散列值 
//md5  ( string $str  [, bool $raw_output  = false  ] )
//注:如果可选的 raw_output 被设置为 TRUE ,那么 MD5 报文摘要将以16字节长度的原始二进制格式返回。 echo md5("admin"); //21232f297a57a5a743894a0e4a801fc3echo md5("admin", TRUE); //!#/)zW¥§C‰JJ€Ã


//计算字符串的 sha1 散列值 
//sha1  ( string $str  [, bool $raw_output  = false  ] )
//注:如果可选的 raw_output 参数被设置为 TRUE ,那么sha1摘要将以20字符长度的原始格式返回,否则返回值是一个 40 字符长度的十六进制数字。 echo sha1("admin"); //d033e22ae348aeb5660fc2140aec35850c4da997echo sha1("admin", TRUE); //Ð3â*ãH®µf ì5…M©—


//以千位分隔符方式格式化一个数字
//number_format  ( float $number  , int $decimals  = 0  , string $dec_point  = '.'  , string $thousands_sep  = ','  )
//注:参数个数必须是1、2、4echo number_format("123.45"); //123echo number_format("123.45", 3); //123.450echo number_format(1230.45, 3, ';');  //报错echo number_format(1230.45, 3, ' ', ','); //1,230 450


//返回字符的 ASCII 码值
//int ord  ( string $string  )
//注:该函数是 chr()  的互补函数。 返回的是字符串第一个字符的ASCII码echo ord("我admin"); //230


//将字符串解析成多个变量
//void  parse_str  ( string $str  [, array &$arr  ] )
//注:如果 str 是 URL 传递入的查询字符串(query string),则将它解析为变量并设置到当前作用域。$str = "http://localhost/php/string.php?a=1&b=2";parse_str($str, $arr);var_dump($arr); //array(2) { ["http://localhost/php/string_php?a"]=> string(1) "1" ["b"]=> string(1) "2" }parse_str("i am yang", $arr);var_dump($arr); //array(1) { ["i_am_yang"]=> string(0) "" }


//重复一个字符串
//string str_repeat  ( string $input  , int $multiplier  )
//注:返回 input 重复 multiplier 次后的结果。 echo str_repeat("i am yang", 2);//i am yangi am yang


//子字符串替换
//mixed  str_replace  ( mixed  $search  , mixed  $replace  , mixed  $subject  [, int &$count  ] )
//注:$count 为替换的次数
//echo str_replace("am", "are", "i am yang"); //i are yang$arr = array('a', 'y');echo str_replace($arr, "", "i am yang"); //i m ng


//将字符串转换为数组
//array str_split  ( string $string  [, int $split_length  = 1  ] )
//注:$split_length代表拆分成的数组值的字符串的长度var_dump(str_split("i am yang")); //将字符串拆分为一个字母的数组var_dump(str_split("i am yang", 3)); //array(3) { [0]=> string(3) "i a" [1]=> string(3) "m y" [2]=> string(3) "ang" }


//从字符串中去除 HTML 和 PHP 标记
//string strip_tags  ( string $str  [, string $allowable_tags  ] )
//注:使用可选的第二个参数指定不被去除的字符列表。 echo strip_tags("<h1 id="i-am-yang-i-can-php-nbsp-i-nbsp-am-nbsp-yang-nbsp-i-nbsp-canecho-nbsp-strip-tags-h-i-am-yang-i-can-php">i am yang ,i can <?php "); //i am yang ,i canecho strip_tags("<h1>i am yang ,i can php </h1>", "<h1 id="h-i-am-yang-i-can-php">"); //<h1>i am yang ,i can php </h1>


//获取字符串长度
//int strlen  ( string $string  )
//注:字符串中包含中文时计算不准确echo strlen("i am yang"); //9echo strlen("我是 yang"); //11


//查找字符串首次出现的位置
//mixed  strpos  ( string $haystack  , mixed  $needle  [, int $offset  = 0  ] )
//注:返回 needle 在 haystack 中首次出现的数字位置。 $offset不能为负数,index(索引)从0开始
//strrposecho strpos("http://localhost/php/string.php", "/"); //5


//查找指定字符在字符串中的最后一次出现
//string strrchr  ( string $haystack  , mixed  $needle  )
//注:该函数返回字符串的一部分。如果 needle 未被找到,返回 FALSE 。
//strchr => strstrecho strrchr("i am yang", "a"); //ang


//反转字符串
//string strrev  ( string $string  )
//注:echo strrev("i am yang"); //gnay ma i


//查找字符串的首次出现
//string strstr  ( string $haystack  , mixed  $needle  [, bool $before_needle  = false  ] )
//注:false:查找的字符串向后截取,若为 TRUE , strstr()  将返回 needle 在 haystack 中的位置之前的部分。echo strstr("i am yang yang", "am");  //am yang yang


//返回字符串的子串 
//string substr  ( string $string  , int $start  [, int $length  ] )
//注:不包含$start位置上的字符,$start为负数时,则从最后开始数$length个字符开始向后截取echo substr("i am yang", 1); //am yangecho substr("i am yang", -2, 2); //ng


//计算字串出现的次数
//int substr_count  ( string $haystack  , string $needle  [, int $offset  = 0  [, int $length  ]] )
//注:该函数不会计算重叠字符串。echo substr_count("i am yang", "a"); //i am yang => 2echo substr_count("i am yang", "a", 3); // m yang => 1echo substr_count("i am yang", "a", 3, 3); //m y => 0</h1>

The above is the entire content of this article. For more related tutorials, please visit php programming from entry to master full set of video tutorials, php practical video tutorial, bootstrap video tutorial!

The above is the detailed content of What are the commonly used strings in php? for example. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:博客园. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

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.