Answers
XMind虽然不错,但毕竟不是纯文本,不方便git
恰好在玩 PlantUML ,练习一把
@startuml
:PHP Script;
partition "Execute" {
if(Check OpCode Cache?) then (not cached)
:Parse;
:Compile to OpCodes;
:Save to Shared Memory;
else(cached)
:Read from Shared Memory;
endif
:Execute(Zend Engine);
}
:Output;
@enduml
源码可以直接粘贴到官网下面的textarea里面即时查看效果