原来ASP和PHP都是可以删除自身的
更新时间:2008年06月13日 22:49:05 作者:
asp和php删除自身的代码
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
%>
这样也行@_@
复制代码 代码如下:
<%
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
%>
这样也行@_@
相关文章
巧用FileSystem组件实现WEB应用中的本地特定打印的方法
巧用FileSystem组件实现WEB应用中的本地特定打印的方法...2007-04-04
最新评论