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

Source for file Cli.php

Documentation is available at Cli.php

  1. <?php
  2.  
  3. /**
  4. * Console script to generate UDF extensions from command line
  5. *
  6. @author Hartmut Holzgraefe <hartmut@php.net>
  7. @version $Id: udf-gen,v 1.3 2006/11/24 21:09:47 hholzgra Exp $
  8. */
  9.  
  10. // includes
  11. require_once "CodeGen/Command.php";
  12.  
  13. require_once "CodeGen/MySQL/UDF/Extension.php";
  14. require_once "CodeGen/MySQL/UDF/ExtensionParser.php";
  15.  
  16. // create extension object
  17. $extension = new CodeGen_MySQL_UDF_Extension;
  18.  
  19. $command = new CodeGen_Command($extension);
  20.  
  21. $parser = new CodeGen_MySQL_UDF_ExtensionParser($extension);
  22.  
  23. $command->execute($parser);

Documentation generated on Mon, 11 Mar 2019 15:29:05 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.