Blogger Information
Blog 4
fans 0
comment 0
visits 2417
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
递归函数实现清空文件和SQL语句基本使用
远程
Original
610 people have browsed it

一、递归函数
递归函数,最基本的特点是函数自身调用自身,但必须在调用自身前有条件判断,否则无限无限调用下去。
实例:简单实现清空Cache文件夹

  1. $path = "./Cache/";
  2. //清空文件夹函数和清空文件夹后删除空文件夹函数的处理
  3. function delCache($path){
  4. //如果是目录则继续
  5. if(is_dir($path)){
  6. //扫描一个文件夹内的所有文件夹和文件并返回数组
  7. $pathArr = scandir($path);
  8. //var_dump($pathArr);
  9. foreach($pathArr as $filepath){
  10. //排除目录中的.和..
  11. if($filepath !="." && $filepath !=".."){
  12. //如果是目录则递归子目录,继续操作
  13. if(is_dir($path.$filepath)){
  14. //子目录中操作删除文件夹和文件
  15. delCache($path.$filepath.'/');
  16. //目录清空后删除空文件夹
  17. @rmdir($path.$filepath.'/');
  18. }else{
  19. //如果是文件直接删除
  20. unlink($path.$filepath);
  21. }
  22. }
  23. }
  24. }
  25. }
  26. //调用函数,传入路径
  27. delCache($path);

二、SQL语句基本使用
(1)新建staff表

初始化数据如下:

(2)SQL语句基本使用
— 增加记录
INSERT INTO staff (Name,Profession,Age) VALUES (‘王五’,’柜员’,24);
显示结果如下:

— 删除记录
DELETE FROM staff WHERE Name=’王五’;
显示结果如下:

— 查找记录
SELECT * FROM staff WHERE Name=’张三’;
显示结果如下:

— 修改记录
UPDATE staff SET Age=28 WHERE Name=’张三’;
显示结果如下:

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
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