中文(简体)
中文(简体)
中文(繁体)
한국어
日本語
English
Português
Español
Русский
العربية
Indonesia
Deutsch
Français
ภาษาไทย
网站地图大全
最新更新
首页
源码下载
编程相关
建站资源
网页设计教程
网络编程教程
首页
>
网络编程教程
>
PHP教程
全部
ASP入门教程
ASP教程
ASP.NET教程
PHP教程
JSP教程
C#/CSHARP教程
XML教程
Ajax教程
Perl教程
Shell教程
Visual Basic教程
Delphi教程
移动开发教程
C/C++教程
Java教程
J2EE/J2ME
软件工程
PHP教程
PHP substr() 函数
实例从字符串中返回 "world":<?phpecho substr("Hello world",6);?>定义和用法substr() 函数返回字符串的一部分。
2024-12-29
PHP strtr() 函数
实例把字符串中的字符 "ia" 替换成 "eo":<?phpechostrtr("Hilla Warld","ia","eo");?>定义和用法strtr()
2024-12-29
PHP strtoupper() 函数
实例把所有字符转换为大写:<?phpecho strtoupper("Hello WORLD!");?>定义和用法strtoupper() 函数把字符串转换为大
2024-12-29
PHP strtolower() 函数
实例把所有字符转换为小写:<?phpecho strtolower("Hello WORLD.");?>定义和用法strtolower() 函数把字符串转换为小
2024-12-29
PHP strtok() 函数
实例按单词分割字符串:在下面的实例中,请注意,我们仅在第一次调用 strtok() 函数时使用了 string 参数。在首次调用后,该函数仅需要 split 参
2024-12-29
PHP strspn() 函数
实例返回在字符串 "Hello world!" 中包含字符 "kHlleo" 的数目:<?phpecho strspn("Hello world!","kHll
2024-12-29
PHP strrpos() 函数
实例查找 "php" 在字符串中最后一次出现的位置:<?phpecho strrpos("I love php, I love php too!","php")
2024-12-29
PHP imagecolorallocate - 为一幅图像分配颜色
imagecolorallocate — 为一幅图像分配颜色。语法int imagecolorallocate ( resource $image , int
2024-12-29
PHP imagecharup - 垂直地画一个字符
imagecharup — 垂直地画一个字符。语法bool imagecharup ( resource $image , int $font , int $x
2024-12-29
PHP imagechar - 写出横向字符
imagechar — 写出横向的字符。语法bool imagechar ( resource $image , int $font , int $x , in
2024-12-29
PHP imagearc - 画椭圆弧
imagearc — 用于画椭圆弧。语法bool imagearc ( resource $image , int $cx , int $cy , int $w
2024-12-29
PHP imageantialias - 是否使用抗锯齿(antialias)功能
imageantialias — 是否使用抗锯齿(antialias)功能。语法bool imageantialias ( resource $image ,
2024-12-29
PHP imagealphablending - 设定图像的混色模式
imagealphablending — 设定图像的混色模式。语法bool imagealphablending ( resource $image , boo
2024-12-29
PHP imageaffinematrixget - 获取矩阵
imageaffinematrixget — 获取矩阵。语法array imageaffinematrixget ( int $type [, mixed $o
2024-12-29
PHP imageaffinematrixconcat - 连接两个矩阵
imageaffinematrixconcat — 连接两个矩阵。语法array imageaffinematrixconcat ( array $m1 , a
2024-12-29
上一页
28
29
30
31
32
33
34
35
36
下一页