业务流 关联数据库 获取流程图
业务流 关联数据库 获取流程图
<?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('set names utf8'); } //插入一个流程 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,'$userName',$n,NOW(),0,0)"; $result=mysql_query($sql); $insert_num=mysql_affected_rows($result); } } } //proID事项ID function selectSameEvent($proID) { $sql = 'SELECT * FROM event where proID='.$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 = 'SELECT * FROM event where proID='.$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]['orderNum']; } 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; } } } ?>
Copy after login
2. [图片] 业务流.jpg
以上就是业务流 关联数据库 获取流程图的内容,更多相关内容请关注PHP中文网(www.php.cn)!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
Roblox: Grow A Garden - Complete Mutation Guide
4 weeks ago
By DDD
Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Clair Obscur: Expedition 33 - How To Get Perfect Chroma Catalysts
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics
Java Tutorial
1677
14


CakePHP Tutorial
1430
52


Laravel Tutorial
1333
25


PHP Tutorial
1278
29


C# Tutorial
1257
24

