Home > Backend Development > PHP Tutorial > PHP里究竟有多少函数那里看

PHP里究竟有多少函数那里看

WBOY
Release: 2016-06-23 14:01:00
Original
960 people have browsed it

求解PHP里究竟有多少函数那里看 那里有中文的函数解释


回复讨论(解决方案)

手册。。。。。。。。。。。

中文手册   .

手册,w3school  

<?php$funs = get_defined_functions(); ## get_declared_classes() , get_declared_interfaces(),get_defined_constants(),get_defined_vars(),get_extension_funcs('module_name')var_dump($funs);
Copy after login

php5 手册

http://www.php.net/manual/en/
http://www.php.net/manual/zh/index.php

发现翻译错欢迎汇报....


看样子,你是想把函数库给搞出来,然后一个一个学,是吗?

你在手册里(http://www.php.net/manual/zh/index.php)搜索一个函数(比如array_walk)

然后左侧侧边栏就会有同类的函数分类,点击一下大分类比如“数组 函数”,里面会分好类。

Good Luck!

下个手册看看把  不过有些还是英文的 没有全部汉化

上它的官方网站。所有的都列出来的。

其实没必要知道一共有多少个,只要记住实际工作当中用到的就好了..

PHP code?123 +1

官方网站就有 中文版的在线手册

http://www.w3school.com.cn/php/index.asp  有手册 

下个手册就行了。上去百度,搜索php手册 chm版的

或者到这个网站上看:http://cn2.php.net/manual/zh/funcref.php

如果想学好php网上很多手册,提供两个链接希望对你有帮助
http://www.phpeye.com/zf/index.html
http://www.w3school.com.cn/php/

 print_r(get_defined_functions()) ?>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template