框架目录:
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