[PHP源码阅读]strtolower和strtoupper函数,strtoupper_PHP教程
程序员文章站
2022-03-21 09:53:25
...
[PHP源码阅读]strtolower和strtoupper函数,strtoupper
字符串的操作函数中,字符串的大小写转换也算是比较常用的函数,其底层实现也比较简单,下面来一探究竟。
我在github上有对PHP源码更详细的注解。感兴趣的可以围观一下,给个star。PHP5.4源码注解。可以通过commit记录查看已添加的注解。
strtolower
string strtolower ( string $string )
将字符串转换成小写字符。
strtoupper
string strtoupper ( string $string )
将字符串转换成大写字符。
运行示例
$str = 'Hello World'; $new_str = strtolower($str); // hello world $str = 'hello world'; $new_str = strupper($str); // HELLO WORLD
代码运行步骤
拷贝一份字符串
php_strtolower/php_strtoupper进行转换
源码解读
两个函数的核心操作都差不多,讲一下strtolower,另一个是类似的。
php_strtolower函数的核心代码如下:
c = (unsigned char *)s; e = c+len; // 遍历s,逐个变为小写 while (c e) {
上一篇: php全局变量共享吗
下一篇: 用什么软件编辑php
推荐阅读
-
[PHP源码阅读]array_pop和array_shift函数,jsarraypopshift_PHP教程
-
[PHP源码阅读]array_pop和array_shift函数,jsarraypopshift
-
[PHP源码阅读]array_slice和array_splice函数,slicesplice
-
[PHP源码阅读]array_slice和array_splice函数,slicesplice_PHP教程
-
[PHP源码阅读]empty和isset函数,emptyisset_PHP教程
-
[PHP源码阅读]count函数,php源码count函数_PHP教程
-
PHP 源码阅读:explode 和 implode 函数
-
【PHP源码阅读】explode和implode函数,explodeimplode
-
[PHP源码阅读]empty和isset函数
-
[PHP源码阅读]empty和isset函数,emptyisset