> php教程 > PHP源码 > 본문

业务流 关联数据库 获取流程图

PHP中文网
풀어 주다: 2016-05-25 17:10:05
원래의
1126명이 탐색했습니다.

业务流  关联数据库  获取流程图

<?php
class dealEvent{
	private $host;
	private $user;        //mysql用户名 
	private $passWord;    //mysql密码 
	private $database;  //mysql数据库名 
	private $tables;  //表名 
	function __construct()
	{
		$this->host="localhost";
		$this->user="root";
		$this->passWord="sanyue@";
		$this->database="event";
		$this->tables="event";
		$conn=mysql_connect($this->host,$this->user,$this->passWord) or die("数据库打开出错"); 
	    mysql_select_db("event",$conn); 
		mysql_query(&#39;set names utf8&#39;);
	}
	//插入一个流程
	function insertProcess($arr,$proID)//将所选人员插入数据库
	{   
		for($m=0;$m<count($arr);$m++)
		{
			for($n=0;$n<count($arr[$m]);$n++)
			{
				$userName=$arr[$m][$n];
				$sql="Insert into event(proID,orderNum,userName,userOrder,dateTimes,status,memo)values($proID,$m,&#39;$userName&#39;,$n,NOW(),0,0)"; 
				$result=mysql_query($sql);
				$insert_num=mysql_affected_rows($result);
			}
		}
	}
	
	//proID事项ID
	function selectSameEvent($proID)
	{
		$sql = &#39;SELECT * FROM event where proID=&#39;.$proID." order by orderNum ASC"; 
		$result=mysql_query($sql);
		$array[] =mysql_fetch_assoc($result);
		while($row=mysql_fetch_assoc($result))
		{
			array_push($array,$row);
		}
		$array=$this->getArray($array,"userName");
		
		return $array;
		
	}
	
	function getDealStatus($proID)
	{
		$sql = &#39;SELECT * FROM event where proID=&#39;.$proID." order by orderNum ASC"; 
		$result=mysql_query($sql);
		$array[] =mysql_fetch_assoc($result);
		while($row=mysql_fetch_assoc($result))
		{
			array_push($array,$row);
		}
		$array=$this->getArray($array,"status");
		
		return $array;
	}
	
	//整理流程数组
	private function getArray($array,$fieldName)
	{
		for($i=0;$i<count($array);$i++)
		{
			$arr[$i]=$array[$i][&#39;orderNum&#39;];
		}

		sort($arr);//排序
		$cunt=array_count_values($arr);//计算数组中值出现的次数
		$index=0;
		for($n=0;$n<count($cunt);$n++)
		{
			for($m=0;$m<$cunt[$n];$m++)
			{
				$mode =$array[$index++][$fieldName]; 
				$array2[$n][$m]=$mode;
			}
		}
		return $array2;
	}
	
	function dealEvent($sqlWhere)
	{
		$sql="update event set status=$status where".$sqlWhere;
		$result=mysql_query($sql);
		if($result&&mysql_affected_rows()>0)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	
	
}

 ?>
로그인 후 복사

2. [图片] 业务流.jpg

1206.jpg

 以上就是业务流  关联数据库  获取流程图的内容,更多相关内容请关注PHP中文网(www.php.cn)!


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿