1
0
Fork 0
MySQLDumper/library/Msd/Sql/Parser/Statement/Comment.php
D4rk4ng3l 4ce08bf58f Added statement parser for comments.
Added "Traversable" implementation to access the parsed MySQL statements with "foreach".
Setted SVN keywords.
Fixed DocBlocks.
2011-06-19 13:47:44 +00:00

33 Zeilen
756 B
PHP

<?php
/**
* This file is part of MySQLDumper released under the GNU/GPL 2 license
* http://www.mysqldumper.net
*
* @package MySQLDumper
* @subpackage SQL-Browser
* @version SVN: $Rev$
* @author $Author$
*/
require_once "Msd/Sql/Parser/Interface.php";
/**
* Class to parse MySQL comments.
* This enables you to analyze and modify MySQL queries, which the user has entered.
*
* @package MySQLDumper
* @subpackage SQL-Browser
*/
class Msd_Sql_Parser_Statement_Comment implements Msd_Sql_Parser_Interface
{
/**
* Parse the statement.
*
* @param string $statement MySQL comment.
*
* @return void
*/
public function parse($statement)
{
echo "Comment: $statement\n";
}
}