码迷,mamicode.com
首页 > Web开发 > 详细

PHP对XML操作2

时间:2015-03-15 18:30:42      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

<?xml version="1.0" encoding="UTF-8"?>
<flow name="myflow">
	<start name="开始流程" id="xs"/>
	<usertask name="发起申请" id="x1">
		<from type="start">xs</from>
		<true type="usertask">x2</true>
		<false type="end">xe</false>
	</usertask>
	<usertask name="审批" id="x2">
		<from type="usertask">x1</from>
		<true type="end">x3</true>
		<false type="usertask">x1</false>
	</usertask>
	<end name="流程结束" id="xend"/>
</flow>


PHP对XML操作2

标签:

原文地址:http://my.oschina.net/acitiviti/blog/387260

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!