Please enable JavaScript.
Coggle requires JavaScript to display documents.
PHP (Words (Class 对象 (访问控制 (public, protected, private), 构造函数 (与 new 一起执行,…
PHP
Words
Class 对象
-
构造函数
-
void __construct ( [mixed $args [, $...] )
-
-
-
接口
interface
指定某个类必须实现哪些方法, 但接口中不需要定义这些方法的具体内容
-
抽象
abstract
任何一个类, 如果它里面至少有一个方法是被声明为抽象的, 那么这个类就必须被声明为抽象的
-
-
-
Array 数组
以 array(..., ..., ...) 定义
键值对
(... => ..., ... => ...) 定义
-
-
-
-
-
-
-
-
Constant 常量
bool define ( string $name , mixed $value [, bool $case_insensitive = false ] )
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Grammar 语法
-
Variables 变量
-
-
-
-
-
-
$GLOBALS[index]
全局变量保存在这样一个数组中, index 为变量名
Introduction 介绍
内可以包含html, 动态处理并返回给服务器一个html界面