本文整理匯總了PHP中base::meta方法的典型用法代碼示例。如果您正苦於以下問題:PHP base::meta方法的具體用法?PHP base::meta怎麽用?PHP base::meta使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類base
的用法示例。
在下文中一共展示了base::meta方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: substr
<!DOCTYPE html>
<html lang="en">
<head>
<?php
echo base::meta('project');
?>
<?php
echo base::css('style');
?>
<style type="text/css"><?php
echo $data['css'];
?>
</style>
</head>
<body>
<header class="header">
</header>
<div class="wrapper">
<div class="sprite-example">
<ul class="icon-list">
<?php
foreach ($data['class'] as $item) {
?>
<li title="icon-<?php
echo substr($item, 1);
?>
">
<i class="icon icon-<?php
echo substr($item, 1);
?>
示例2:
<!DOCTYPE html>
<html lang="en">
<head>
<?php
echo base::meta('Css Sprite');
?>
<?php
echo base::css('style');
?>
</head>
<body>
<header class="header">
</header>
<div class="wrapper">
<div class="uploadForm">
<p>
<input type="text" id="store-project">
<input type="text" id="store-name">
<input type="text" id="store-comment">
<textarea id="store-css"></textarea>
<input type="file" id="store-img">
<button onclick="app.sprite.test()">TEST</button>
</p>
</div>
</div>
<footer class="footer">
<?php
echo base::js('jquery-main');
?>
</footer>