前の記事 «:2008年5月14日 管理人のブックマーク
次の記事 »:人物と水滴画像を合成して水人間を作成するPhotoshopチュートリアル

オンラインでPHPコード整形「Online php code beautifier」

2008年05月15日

スポンサード リンク
Online php code beautifier
Paste your php code below and hit the beautify button to get the beautified source code

オンラインでPHPコード整形「Online php code beautifier」



A php code beautifier that works というエントリでのPhpBeautifierクラスのデモなんですが、ソースも公開されています。
次のようにクラスベースで簡単に使えます。

<?php
include 'PhpBeautifier.inc';

$beautify = new PhpBeautifier();
$beautify -> tokenSpace = true;
$beautify -> blockLine = true;
$beautify -> optimize = true;
$beautify -> file( 'test.php', 'beautified.php' );
?>

その精度については具体的に試していませんが、PHPベースで手軽に利用できるので、ソースを自動で整形したい場合に有用かも。
ソースを読んでもなかなか面白そうです。

関連エントリ

スポンサード リンク

投稿者 KJ : 2008年05月15日 07:08 | ブックマークに追加する Subscribe with livedoor Reader
間違いの指摘をしていただける方はメールでお願いします


本を執筆しました。