本文整理汇总了PHP中SqlFormatter::removeComments方法的典型用法代码示例。如果您正苦于以下问题:PHP SqlFormatter::removeComments方法的具体用法?PHP SqlFormatter::removeComments怎么用?PHP SqlFormatter::removeComments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SqlFormatter
的用法示例。
在下文中一共展示了SqlFormatter::removeComments方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testRemoveComments
function testRemoveComments()
{
$expected = SqlFormatter::format("SELECT\n * FROM\n MyTable", false);
$sql = "/* this is a comment */SELECT#This is another comment\n * FROM-- One final comment\n MyTable";
$actual = SqlFormatter::removeComments($sql);
$this->assertEquals($expected, $actual);
}
示例2: foreach
</div>
<table>
<tr>
<th>Original</th>
<th>Comments Removed</th>
</tr>
<?php
foreach ($comment_statements as $sql) {
?>
<tr>
<td>
<pre><?php
echo SqlFormatter::highlight($sql);
?>
</pre>
</td>
<td>
<pre><?php
echo SqlFormatter::highlight(SqlFormatter::removeComments($sql));
?>
</pre>
</td>
</tr>
<?php
}
?>
</table>
</body>
</html>