0

これはHTMLテンプレートであり、phpテンプレートではなく、javaなどでもありません。

PHP用のHAMLのようなものを探しています。深刻なバグに悩まされているPHP、PHAML、PHPHamlの2つのプロジェクトを試しました。

できればPHP用の優れたhtmlテンプレートツールを知っていますか?

編集私』はこれを変えることができる何かを探しています

<h1>Heading</h1>
<p>entry</p>
<blockquote>quote</blockquote>

このようなものに

h1 : heading
p : entry
blockquote : quote 

phphamlのようなもの

4

3 に答える 3

0

テキスタイルを見てみませんか?

http://textism.com/tools/textile/

右側の構文例を見てください。ここに例があります...

h2{color:green}. This is a title

h3. This is a subhead

p{color:red}. This is some text of dubious character. Isn't the use of "quotes" just lazy writing -- and theft of 'intellectual property' besides? I think the time has come to see a block quote.

に変換:

<h2 style="color:green;">This is a title</h2>

<h3>This is a subhead</h3>

<p style="color:red;">This is some text of dubious character. Isn&#8217;t the use of &#8220;quotes&#8221; just lazy writing&#8212;and theft of &#8216;intellectual property&#8217; besides? I think the time has come to see a block quote.</p>

右側のサイドバーの下部に他の例があります。

于 2010-04-15T08:59:11.167 に答える
0

最小限のパーサー エンジンに基づいて phamlp を完全に書き直したhttp://haml-to-php.com/を試してください。

于 2011-03-24T11:51:15.080 に答える
-1

これを使用できます:http://github.com/mo-zag/watcher。RubyHamlファイル内にPHPコードを追加する方法に関するガイドがあります。このウォッチャーはファイルを監視し、指定されたフォルダーに保存します。設定も非常に簡単です。PHPテンプレートパーサーを使用する必要はありません。RubyでネイティブのHamlとSassを使用するだけです。

于 2010-10-13T22:25:22.300 に答える