1.1. 入門

1.1.1. インストール方法

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

composer require qiq/qiq ^2.0

1.1.2. はじめに

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

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

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

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

use Qiq\Template;

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

これだけです。