|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
用C语言重新编写,包括可以访问数据库。他将这些程序和一些表单直译器整合起来,称为PHP/FI。PHP/FI可以和数据库连接,产生简单的动态网页程序。
php基本:PHP中解压RAR文件
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN"- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/><title>PHP解压RAR文件</title><linkrel="stylesheet"type="text/CSS"href="style.css"><styletype="text/css"><!--.STYLE1{color:#FF0000}--></style></head><scriptlanguage="javascript">functionchkinput(form){if(form.sourcefile.value==""){alert("请选择要解压的文件地点!");form.sourcefile.select();return(false);}if(form.objfile.value==""){alert("请输出解压文件存储地点!");form.objfile.select();return(false);}return(true);}</script><body><tablewidth="300"height="166"border="0"align="center"cellpadding="0"cellspacing="0"><tr><tdbackground="images/back.gif"><tablewidth="300"border="0"cellpadding="0"cellspacing="0"><formname="form1"method="post"action="index.php"onsubmit="returnchkinput(this)"><tr><tdheight="50"colspan="2"></td></tr><tr><tdwidth="100"height="25"><divalign="right">RAR文件地点:</div></td><tdwidth="200"><inputtype="file"name="sourcefile"size="18"class="inputcss"></td></tr><tr><tdheight="25"><divalign="right">解压后存储目次:</div></td><tdheight="25"><inputtype="text"name="objfile"size="18"class="inputcss">(c:目次名)</td></tr><tr><tdheight="20"colspan="2"><divalign="center"class="STYLE1">注重:解压文件的路径不该有空格</div></td></tr><tr><tdcolspan="2"><divalign="center"><inputtype="submit"name="submit"value="解压"class="buttoncss"/></div></td></tr></form></table></td></tr></table><?phpif($_POST[submit]!=""){$sourcefile=$_POST[sourcefile];$objfile=$_POST[objfile];$sourcefile=str_replace(chr(32),"",$sourcefile);$obj=newcom("wscript.shell");$obj->run("WinRARx-r-o".$sourcefile."".$objfile."",1,true);echo"<script>alert(文件解压完成!);</script>";}?></body></html>
复制代码 function.php:- <?phpfunctionunhtml($content){$content=htmlspecialchars($content);$content=str_replace(chr(13),"<br>",$content);$content=str_replace(chr(32),"",$content);$content=str_replace("【","<",$content);$content=str_replace("】",">",$content);$content=str_replace("_","",$content);returntrim($content);}?>
复制代码 模仿的不光是模仿,模仿的同时在加改进,就成了自己的作品了。 |
|