笔记--ThinkPHP的函数库

来源:互联网 发布:上海网络女小说家 编辑:程序博客网 时间:2024/06/05 14:42

框架目录:

U函数:./ThinkPHP/Common/function.php

C函数:./ThinkPHP/Common/common.php

自定义函数目录:

./APP/Common/common.php:

定义后可以直接调用在indexAction.class.php中

dump函数可以直接dump 数组:

$arr=array(1,2,3,4,5);dump($arr);

array (size=5)  0 => int 1  1 => int 2  2 => int 3  3 => int 4  4 => int 5



0 0
原创粉丝点击