回顾下PHP基础知识-字符串数组操作
程序员文章站
2022-05-19 15:01:36
...
在日常工作中常常需要处理一些字符串或者数组,今天有时间来整理一下
字符串操作
<?php
//字符串截取
$str = 'Hello World!'
substr($str,0,5);//返回'Hello'
//中文字符串截取
$str = '你好,深圳';
$result = mb_substr($str,0,2);//返回你好
//查找字符串的首次出现
$emai = "aaa@qq.com";
$domain = strstr($email,'@');//返回‘@163.com’
$domain = strstr($email, '@','true');//返回‘123’。
//查找字符串在另一字符串中第一次出现的位置。
$emai = "aaa@qq.com";
strpos($emai,'@');//返回‘3'
//把字符串打散为数组
$str = '你好,深圳';
$arr = explode(',',$str);//返回值为array(2) { [0]=> string(6) "你好" [1]=> string(6) "深圳"
//字符串长度
$str = "Hello world";
$str1 = strlen($str);//返回11
//把字符串中的首字符转换为大写。
$str = "hello world";
$str1= ucfirst($str);//返回“Hello world”
//把字符串中的首字符转换为小写。
$str = "Hello world";
$str1= lcfirst($str);//返回“hello world”
//把字符串中每个单词的首字符转换为大写。
$str = "hello world";
$str1= ucwords($str);//返回“Hello World”
//反转字符串
$str = "hello world";
$str1= strrev($str);//返回“dlrow olleh”
//替换字符串中的一些字符
$str = "hello world";
$str1= str_replace('world','lisa',$str);//返回“hello lisa”
//字符串转换为大写
$str = "hello world";
$str1= strtoupper($str);//返回“HELLO WORLD”
//字符串转换为小写
$str = "HELLO WORLD";
$str1= strtolower($str);//返回“hello world”
?>
数组操作
//数组整合成字符串
$arr = ['aa','bb','cc'];
$str = implode(',',$arr);//输出结果“aa,bb,cc”
//数组的key值
$arr = ['aa','bb','cc'];
$aa = array_keys($arr);//输出结果array(3) { [0]=> int(0) [1]=> int(1) [2]=> int(2) }
//合并数组
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
print_r(array_merge($a1,$a2));//返回array(4) { ["a"]=> string(5) "test1" [0]=> string(2) "bb" [1]=> string(2) "cc" [2]=> string(5) "test2" },注意当两个数组键值相同时,最后的会覆盖其他元素
上一篇: 人工智能(python)开发 —— 字典(dict)
下一篇: PHP7 数组的底层实现
推荐阅读
-
php文件操作之文件写入字符串、数组的方法分析
-
基于php常用函数总结(数组,字符串,时间,文件操作)
-
php文件操作:文件写入字符串、数组
-
PHP字符串操作,string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、切割成数组等
-
php文件操作之文件写入字符串、数组的方法分析
-
请问一下PHP怎样在二维数组查找匹配字符串元素效率比较高
-
基于php常用函数总结(数组,字符串,时间,文件操作)
-
php数组查找及字符串操作
-
基于php常用函数总结(数组,字符串,时间,文件操作)_php技巧
-
php基础知识收集--数组、文件、字符串、文件、会话 php字符串练习 php字符串格式化 php转换字符