-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcli.php
More file actions
33 lines (26 loc) · 883 Bytes
/
cli.php
File metadata and controls
33 lines (26 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
declare(strict_types=1);
use Doctrine\SqlFormatter\SqlFormatter;
use Doctrine\SqlFormatter\Tokenizer;
require_once __DIR__ . '/../vendor/autoload.php';
if (PHP_SAPI !== 'cli') :?>
<p>
Run this php script from the command line to see CLI syntax highlighting and
formatting. It support Unix pipes or command line argument style.
</p>
<pre><code>php examples/cli.php \
"SELECT * FROM MyTable WHERE (id>5 AND \`name\` LIKE \"testing\");"</code></pre>
<pre><code>echo "SELECT * FROM MyTable WHERE (id>5 AND \`name\` LIKE \"testing\");"\
| php examples/cli.php</code></pre>
<?php
exit;
endif;
if (isset($argv[1])) {
$sql = $argv[1];
} else {
$fp = fopen('php://stdin', 'r');
assert($fp !== false);
$sql = stream_get_contents($fp);
}
assert($sql !== false);
echo (new SqlFormatter())->format($sql);