Skip to content

zin

书写 PHP 页面的新方式

zin('享受更纯粹的禅道编程开发体验');

php
namespace zin;

set('title', '示例页面');
h1('Hello world!');
p('这是 zin 的示例页面!');
div
(
    button('了解更多'),
    html('<p>仍然支持添加复杂的 <strong>HTML</strong></p>')
);

render();
html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="renderer" content="webkit">
    <title>示例页面</title>
  </head>
  <body>
    <h1>Hello world!</h1>
    <p>这是 zin 的示例页面!</p>
    <div>
      <button type="button">了解更多</button>
      <p>仍然支持添加复杂的 <strong>HTML</strong></p>
    </div>
  </body>
</html>