ダウンロード
公開日:
更新日:
ここでは, OutlineTextのダウンロードリンクを示します.
ダウンロード
以下のページからダウンロード可能です.
https://github.com/ContentsViewer/ContentsPlanet/blob/master/Module/OutlineText.php
NOTE
OutlineTextは, ContentsPlanet(コンテンツ管理システム) に導入され, 更新はContentsPlanetプロジェクト内で行われることになりました.
使い方
phpを実行できる環境(xamppなど)を用意し, ダウンロードしたフォルダの中身をそのままhtdocs
に入れる.
sample.content
にいろいろ書いてみる.
ブラウザでindex.php
にアクセスし結果を見る
index.php
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8" /> <link rel="stylesheet" href="OutlineTextStandardStyle.css" /> </head> <body> <?php include "OutlineText.php"; OutlineText\Parser::Init(); $text = htmlspecialchars (file_get_contents("Sample.content")); echo "<pre>"; echo $text; echo "</pre>"; echo OutlineText\Parser::Parse($text); ?> </body> </html>
対応文字コード
文字コード | BOMなしUTF-8 |
---|---|
改行コード | LFのみ |