本文整理汇总了PHP中Javelin::renderHTMLFooter方法的典型用法代码示例。如果您正苦于以下问题:PHP Javelin::renderHTMLFooter方法的具体用法?PHP Javelin::renderHTMLFooter怎么用?PHP Javelin::renderHTMLFooter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Javelin
的用法示例。
在下文中一共展示了Javelin::renderHTMLFooter方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
color: #666666;
}
</style>
</head>
<body>
<p>This is a simple Tic-Tac-Toe game using Javelin and PHP.</p>
<p>Click a square to make the first move.</p>
<?php
require_once '../../support/php/Javelin.php';
$table = array();
$table[] = '<tr>';
$table[] = Javelin::renderTag('td', 'Your move.', array('sigil' => 'tic-tac-status', 'class' => 'status', 'colspan' => '3'));
for ($y = 0; $y < 3; $y++) {
$table[] = '<tr>';
for ($x = 0; $x < 3; $x++) {
$table[] = Javelin::renderTag('td', '', array('class' => 'tictac', 'meta' => array('pos' => $y * 3 + $x), 'sigil' => 'tic-tac-cell', 'mustcapture' => true));
}
$table[] = '</tr>';
}
echo Javelin::renderTag('table', implode("\n", $table), array('sigil' => 'tic-tac-board'));
Javelin::initBehavior('tic-tac-toe');
?>
</body>
<script src="../../pkg/javelin.dev.js" type="text/javascript"></script>
<script src="tic-tac-toe.js" type="text/javascript"></script>
<?php
echo Javelin::renderHTMLFooter();
?>
</html>