谢谢老师 :)
同时关于set_include_path(), get_include_path(), PATH_SEPARATOR可以参考下http://blog.sina.com.cn/s/blog_4ce89f200100twbl.html
同时关于set_include_path(), get_include_path(), PATH_SEPARATOR可以参考下http://blog.sina.com.cn/s/blog_4ce89f200100twbl.html
2019-01-16
<?php
echo "重要的事情说三遍 !";
for ($i=3; $i>0; $i--) {
echo "使用匿名函数给变量赋值时, 一定要注意结尾的分号──; \n";
}
echo "重要的事情说三遍 !";
for ($i=3; $i>0; $i--) {
echo "使用匿名函数给变量赋值时, 一定要注意结尾的分号──; \n";
}
2019-01-15
func_num_args() 返回传递给函数的参数的数目
func_get_arg() 返回参数列表的某一项
func_get_args() 返回一个包含函数参数列表的数组
func_get_arg() 返回参数列表的某一项
func_get_args() 返回一个包含函数参数列表的数组
2018-10-15