Blogger Information
Blog 4
fans 0
comment 0
visits 2307
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
学到哪记录到哪,PHP 核心的组成部分~PHP String 函数
莫小莫
Original
655 people have browsed it

PHP String 函数

写在前面的话
由于是新手中的新手,所以还是记录下自己常用到,便于复习查找
PHP String 函数是 PHP 核心的组成部分,先列举几个常用的。

  • strlen() - 返回字符串的长度
  1. echo strlen("Hello world!"); // 12
  • str_word_count() - 计算字符串中的单词个数
  1. echo str_word_count("Hello world!"); // 2
  • strrev() - 翻转字符串
  1. echo strrev("Hello world"); // !dlrow olleH
  • strpos() - 查找字符串在字符串中的位置,如果找到则返回位置(从0开始),如果没有,则返回 false
  1. echo strpos("Hello world","world"); // 6

更多Striing函数可以看这里:String 函数

PHP Math函数

  • pi() - 输出PI值

    1. echo(pi()); // 3.1415926535898
  • min() and max() - 返回参数中的最小值和最大值

    1. echo(min(0, 150, 30, 20, -8, -200)); // -200
    2. echo(max(0, 150, 30, 20, -8, -200)); // 150
  • abs() - 返回一个数的绝对值

    1. echo(abs(-6.7)); // 6.7
  • sqrt() - 返回一个数的平方根

    1. echo(sqrt(64)); // 8
  • round() - 对浮点数进行四舍五入。

    1. echo(round(0.60)); // 1
    2. echo(round(0.49)); // 0
  • rand() - 返回一个随机数

    1. echo(rand());
  • 更多数学函数,可以点击这里查看:Math函数

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post