首页 > Web开发 > 详细

PHP对XML操作2

时间:2015-03-15 18:29:13      阅读:351      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!