ASP和PHP都是可以删除自身的

内容摘要
z.asp 复制代码 代码如下:<% s= Server.MapPath("z.asp") Set fso = CreateObject("Scripting.FileSystemObject") If fso.FileExists(s) Then fso.Deletefile(s) End If S
文章正文

z.asp

复制代码 代码如下:

<%
s= Server.MapPath("z.asp")
Set fso = CreateObject("Scripting.FileSystemObject")
If fso.FileExists(s) Then
fso.Deletefile(s)
End If
Set fso = Nothing
%>

z.php
复制代码 代码如下:

<?php
$file = "z.php";
if (file_exists($file)) {
@unlink ($file);
}
?>
运行一下,自己没了....
复制代码 代码如下:

<%
s2= Server.MapPath("z2.asp")
s= Server.MapPath("z.asp")
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile s2,s
Set fso = Nothing
%>
这样也行@_@

z.asp
复制代码 代码如下:
<%
s= Server.MapPath("z.asp")
Set fso = CreateObject("Scripting.FileSystemObject")
If fso.FileExists(s) Then
fso.Deletefile(s)
End If
Set fso = Nothing
%>

z.php
复制代码 代码如下:
<?php
$file = "z.php";
if (file_exists($file)) {
@unlink ($file);
}
?>
运行一下,自己没了....
复制代码 代码如下:
<%
s2= Server.MapPath("z2.asp")
s= Server.MapPath("z.asp")
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile s2,s
Set fso = Nothing
%>
这样也行@_@


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!