PHP strrev() 函数
PHP 教程
· 2019-01-30 11:12:29
实例
反转字符串 "Hello World!":
<?php
echo strrev("Hello World!");
?>
echo strrev("Hello World!");
?>
定义和用法
strrev() 函数反转字符串。
语法
strrev(string)
| 参数 | 描述 |
|---|---|
| string | 必需。规定要反转的字符串。 |
技术细节
| 返回值: | 返回已反转的字符串。 |
|---|---|
| PHP 版本: | 4+ |
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Introduction to Algorithms, 3rd Edition
Thomas H. Cormen、Charles E. Leiserson、Ronald L. Rivest、Clifford Stein / The MIT Press / 2009-7-31 / USD 94.00
Some books on algorithms are rigorous but incomplete; others cover masses of material but lack rigor. Introduction to Algorithms uniquely combines rigor and comprehensiveness. The book covers a broad ......一起来看看 《Introduction to Algorithms, 3rd Edition》 这本书的介绍吧!