FSM
[ class tree: FSM ] [ index: FSM ] [ all elements ]

Source for file graphviz.php

Documentation is available at graphviz.php

  1. <?php
  2.  
  3. require_once 'FSM.php';
  4. require_once 'FSM/GraphViz.php';
  5.  
  6. $payload = array();
  7. $fsm = new FSM('START'$payload);
  8.  
  9. $converter = new FSM_GraphViz($fsm);
  10. $graph $converter->export();
  11.  
  12. $graph->image('png');

Documentation generated on Mon, 11 Mar 2019 16:02:22 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.