本文整理汇总了PHP中Resource::flush方法的典型用法代码示例。如果您正苦于以下问题:PHP Resource::flush方法的具体用法?PHP Resource::flush怎么用?PHP Resource::flush使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Resource
的用法示例。
在下文中一共展示了Resource::flush方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Resource
echo $links;
echo $scripts;
return $this;
}
}
?>
<!doctype html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<?php
$obj = new Resource(array('development' => true, 'merge' => false));
$obj->addCSS('reset');
$obj->addCSS('app');
$obj->addJS(array('lib/jquery.min', 'lib/jquery-ui-min', 'lib/underscore', 'lib/Backbone', 'global', 'config', 'cell', 'select_menu', 'select_view', 'cell_view', 'bootstrap'));
$obj->flush();
?>
</head>
<body>
<a href="" id="preview" style="position:fixed;top:5px;right:5px;z-index:1;" target="_blank">预览</a>
<div id="shower_box">
<iframe id="html_iframe"></iframe>
</div>
<div id="operate_box">
<!-- <div class="option-iframe-back"></div> -->
<div id="selectMenu">
<div class="selectMenu-bg"></div>
<svg class="" height="100" width="100" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
<g class="">
示例2: Resource
<?php
include 'init.php';
$JS = new Resource(new DriverJavaScript(array('base-uri' => '/')));
$JS->setFile('js/example.js');
$JS->flush();