ob缓存使用非常简单,ob主要是为了暂时未输出流开设一些缓存
<?php $content = ‘‘; ob_start(); for(int i=0;i=1000;i++) { echo ‘=>‘.i; } $content = ob_get_contents(); ob_flush(); echo $content; ?>
另外加一点兼容性方面的东西
<?php function doSometings() { $args = func_get_args(); $args_lenght = func_num_args(); } ?>
php参数的获取哦,其实php中存在默认参数,只不过这种方式可以有效的提高代码的强韧度
这点和javascript中的arguments类似
时间: 2024-10-05 05:12:17