Home > Backend Development > PHP Tutorial > 在学习中遇到无法使用数组地图删除文件的情况,报错是回调函数unlink 有问题~请帮帮忙!感谢!

在学习中遇到无法使用数组地图删除文件的情况,报错是回调函数unlink 有问题~请帮帮忙!感谢!

WBOY
Release: 2016-06-06 20:21:14
Original
1355 people have browsed it

<code>$map_dir_arr=glob('cel\*');
array_map('unlink',$map_dir_arr);
rmdir('ce1');</code>
Copy after login
Copy after login

报错是:
Notice: Use of undefined constant unlink - assumed 'unlink' in D:\DEMO\study\document\doc6.php on line 44

44行是语句中的第二行。
还遇到很多问题:我听的是后盾网的免费视频,实在太穷/(ㄒoㄒ)/~~,里面的老师打代码不报错,而我自己打一模一样就报错,是因为视频是11年的,而现在的版本又改了?

原来以为是没加引号的原因,结果加了也报错,视频里的老师没加引号,小弟初学者,请各路神仙帮帮忙,顺便祝大家新年快乐~~~

回复内容:

<code>$map_dir_arr=glob('cel\*');
array_map('unlink',$map_dir_arr);
rmdir('ce1');</code>
Copy after login
Copy after login

报错是:
Notice: Use of undefined constant unlink - assumed 'unlink' in D:\DEMO\study\document\doc6.php on line 44

44行是语句中的第二行。
还遇到很多问题:我听的是后盾网的免费视频,实在太穷/(ㄒoㄒ)/~~,里面的老师打代码不报错,而我自己打一模一样就报错,是因为视频是11年的,而现在的版本又改了?

原来以为是没加引号的原因,结果加了也报错,视频里的老师没加引号,小弟初学者,请各路神仙帮帮忙,顺便祝大家新年快乐~~~

function myfunction($v)
{
return($v*$v);
}

$a=array(1,2,3,4,5);
print_r(array_map("myfunction",$a));
?>

unlink 方法没写??

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template