1.1. 入門

1.1.1. インストール方法

QiqはComposerから qiq/qiq としてインストールします。

composer require qiq/qiq ^1.0

1.1.2. はじめに

まず、テンプレートファイルは/path/to/templates/hello.phpに保存されているとします。

Hello, {{h $this->name }}. That was Qiq!

And this is PHP, <?= $this->h($this->name) ?>.

次はhello テンプレートを使って出力を生成するためのプレゼンテーションコードです。

use Qiq\Template;

$tpl = Template::new('/path/to/templates');
$tpl->setView('hello');
$tpl->setData([
    'name' => 'World'
]);
echo $tpl->render();

これだけです。