|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我的这套线路可能跟许多学习PHP的爱好者不谋而合,这也算是一个循序渐进的学习过程,不过新手不要看到上面的概括就以为学习蛮简单的,默默在此不得不对您稍微泼一下冷水,任何东西其实都不简单。
$canshuZoneId=1;
}else{
if($canshuZoneId==0) {
continue;
}else{
break;
}
}
}else{
if($canshuZoneId==0) continue;
}//区域选择停止
$id_temp=substr($value,0,$keylength);
if($id_temp==$actionID){
//入手下手取参数
$callback=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($callback)));
$limitSite=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($limitSite)));
$checkFile=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($checkFile)));
$fileType=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($fileType)));
$maxLength=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($maxLength)));
$user=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($user)));
$targetDir=trim(strrchr($value, " "));
$value=trim(substr($value,0,strlen($value)-strlen($targetDir)));
return true;
}else{
continue;
}
}//while停止,能运转到这一步申明没有找到婚配的ID
return false;
}elseif($actionType=="del"){
//假如是删除文件操作
while (list($key,$value) = each($fileArray)) {
$value=trim($value);
//判别参数区域,将参数提取限制在 删除 文件设置区
$Zone_temp=substr($value,0,1);
if($Zone_temp=="["){//入手下手一个参数区域
if(strstr($value, "del")){
$canshuZoneId=1;
}else{
if($canshuZoneId==0) {
continue;
}else{
break;
}
}
}else{
if($canshuZoneId==0) continue;
}//区域选择停止
$id_temp=substr($value,0,$keylength);
if($id_temp==$actionID){
//入手下手取参数
$user=trim(strrchr($value, " "));
return true;
}else{
continue;
}
}//while停止,能运转到这一步申明没有找到婚配的ID
return false;
}else{//既不是up,也不是del
return false;
};
return false;
}
##取设置装备摆设文件参数函数停止
//主法式
$configureFile="config.inc.php";
$actiontype=trim($actiontype);
##上传文件
if($actiontype=="upload"){
if(!($actionid && $username && $password && $userfile_name)) {
echo "<html>操作ID、用户名、暗码、上传文件缺一不成!<a href=javascript:window.history.back()>点这里前往修正</a></html>";
exit;
}
if(!get_config($configureFile,$actionid,$actiontype)){echo "<html>不正当的操作ID。<a href=javascript:window.history.back()>点这里前往修正</a></html>";exit;}
if($userfile_size>$maxLength*1024){echo "<html>上传的文件超越划定巨细的下限。<a href=javascript:window.history.back()>点这里前往修正</a></html>";exit;}
if(!getUserRight($username,$user) && !getFileType($userfile_name,$fileType)){exit;} //可调剂
if($limitSite!="*") if(checkFromSiteErr($HTTP_REFERER,$limitSite)) exit;
if($checkFile!="*") {
$cmd_return_var=passthru($checkFile." ".$userfile_name);//号令行参数请求问反省文件名 + 空格 + 上传文件名
//$cmd_return_var=true;//法式开辟的时分利用,请删除
if(!$cmd_return_var){
echo "<html>您上传的文件没有经由过程咱们的反省,请上传合适请求的文件。<a href=javascript:window.history.back()>点这里前往修正</a></html>";
exit;
}
};//挪用内部法式反省,不合适请求的文件前往 false,合适请求前往true;
if(""==trim($newname)){$newname=$userfile_name;};//处置文件名
$targetFileName=$targetDir."/".$newname;
if(file_exists($targetFileName)){
$oldTargetSize=filesize($targetFileName);
if($userfile_size<=$oldTargetSize ){
echo "<html>您要上传的方针文件已存在。上传举措被作废。<a href=javascript:window.history.back()>点这里前往修正</a></html>";
exit;
}
};
copy($userfile,$targetFileName) or die;
chmod($targetFileName,0666);//110110110
//日记信息
$message=date("Y-m-d H:i:s")." remote_ip:".$REMOTE_ADDR." UserName:".$username." FileName:".$newname."";
putLog($actionid,$message);
header("location:".$callback);
exit;
};
##上传终了
##删除办理
if($actiontype=="del"){
if(!($actionid && $username && $password )) {
echo "<html>操作ID、用户名、暗码缺一不成!<a href=javascript:window.history.back()>点这里前往修正</a></html>";
exit;
}
if(!get_config($configureFile,$actionid,$actiontype)){echo "<html>不正当的操作ID。<a href=javascript:window.history.back()>点这里前往修正</a></html>";exit;}
if(!getUserRight($username,$user)){exit;}
在相册系统的开发上,因为采用的是团队分工合作方式,更让我明白了在一个团队之中,团队成员之间的交流沟通的重要性,如果没有很好的沟通交流,成员之间的任务没有分配好。 |
|