您好,登錄后才能下訂單哦!
小編給大家分享一下php程序設計小示例有哪些,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、
check.php頁面:
<?php
//圖片上傳到服務器
function fileext($filename)
{
return substr(strrchr($filename,'.'),1); //獲取擴展名
}
function random($length)
{ //生成隨機文件名函數
$hash='CR-';
$chars='abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz';
$max=strlen($chars)-1;
mt_srand((double)microtime()*1000000);
for($i=0;$i<$length;$i++)
{
$hash.=$chars(mt_rand(0,$max));
}
return $hash;
}
?>
form.php頁面:
<form action="upload.php" method="post" enctype="multipart/form-data"><!--定義method屬性-->
<table border="0" cellspacing="0" cellpadding="0" align="center" width="300px">
<tr>
<td width="55" height="20" align="center">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000"/>文件:
</td>
<td height="16">
<input type="file" name="file" value="瀏覽"/>
</td>
</tr>
<tr>
<td align="center" colspan="2"><br />
<input type="submit" name="B1" value="上傳"/>
</td>
</tr>
</table>
</form>
upload.php頁面:
<?php
include("check.php");
$uploaddir="./files?";
$type=array("jpg","gif","bmp","jpeg","pan");//設置允許上傳文件的類型
if(!in_array(strtolower(fileext($_FILES['file']['name'])),$type))//判斷上傳文件的類型是否在范圍內
{
$text=implode(",",$type);
echo "您只能上傳以下類型文件:",$text,"<br/>";
}else
{
$filename=explode(".",$_FILES['file']['name']);//獲取文件名
do{
$filename[0]=random(10);
$name=implode(".",$filename);
$uploadfile=$upload.$name;
}
while(file_exists($uploadfile));
if(is_uploaded_file($_FILES['file']['tmp_name']))
{
if(move_uploaded_file($_FILES['file']['tmp_name'],$uploadfile))
{
echo "<center>您的文件已經上傳完畢 上傳圖片預覽:</center><br/><center><img src='$uploadfile'></center";
echo "<br/><center><a href='javascript:history.go(-1)'>繼續上傳</a></center>";
}else
{
echo "上傳失敗";
}
}
}
?>
2、
<!--在外部文件中讀取并顯示用戶協議-->
<table width="100" border="0" cellpadding="1" cellspacing="1" bgcolor="#cccccc">
<tr>
<td bgcolor="#ffffff">
<!--寫文本內容要加載區-->
</td>
</tr>
</table>
<form action="zhuce.php" method="post" name="register" id="form">
<input type="hidden" name="action" id="action" value="agree"/>
<input type="submit" name="submit" value="同意"/>
</form>
<form action="" method="post" name="form" id="from">
<a href="index.php">
<input type="reset" name="reset1" id="reset1" value="不同意"/>
</a>
</form>
以上是“php程序設計小示例有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。