Blogger Information
Blog 2
fans 0
comment 0
visits 1022
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php学习第二天
刘泽奇的博客
Original
424 people have browsed it
<?php

/*
 * php函数
 * 自定义函数、匿名函数、回调函数、变量函数、系统内置函数
 *  Global的作用是定义全局变量,但是这个全局变量不是应用于整个网站,而是应用于当前页面,包括include或require的
 *  所有文件。但是在函数体内定义的global变量,函数体内可以使用,在函数体外定义的global变量不能在函数体内使用
 * 在 GLOBALS数组中,每一个变量为一个元素,键名对应变量名,值对应变量的内容。GLOBALS数组中,每一个变量为一
 * 个元素,键名对应变量名,值对应变量的内容。GLOBALS 之所以在全局范围内存在,是因为 GLOBALS是一个超全局变量。
 * 注意GLOBALS是一个超全局变量。注意GLOBALS 的写法,比如变量a1,写法为a1,写法为GLOBALS['a1']。
 * 在PHP中, 有require、require_once、include、include- once四种方法包含一个文件。
 */
?>


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