1.0.3 • Published 7 years ago

jphps v1.0.3

Weekly downloads
11
License
MIT
Repository
github
Last release
7 years ago

jphps(<%>)

NPM version Build Status Coverage Status

处理前

function renderItem($item) {
  if (isset($item)) {
  <li>
    <a href="!#{$item['url']}">#{$item['title']}</a>
  </li>
  }
}

<ul>
renderItem(array('url' => 'http://google.com/', 'title' => 'Google'));
renderItem(array('url' => 'http://www.baidu.com/', 'title' => '百度'));
</ul>

处理后

<?php function renderItem($item) {
  if (isset($item)) { ?>
  <li>
    <a href="<?php echo $item['url'] ?>"><?php echo htmlentities($item['title']) ?></a>
  </li>
<?php   }
} ?>

<ul>
<?php renderItem(array('url' => 'http://google.com/', 'title' => 'Google'));
renderItem(array('url' => 'http://www.baidu.com/', 'title' => '百度')); ?>
</ul>

运行后

<ul>
  <li>
    <a href="http://google.com/">Google</a>
  </li>
  <li>
    <a href="http://www.baidu.com/">百度</a>
  </li>
</ul>

License

MIT © zswang

1.0.3

7 years ago

1.0.1

7 years ago

0.0.11

8 years ago

0.0.9

8 years ago

0.0.1

8 years ago