当前位置: 首页>>代码示例>>PHP>>正文


PHP csstidy::get_cfg方法代码示例

本文整理汇总了PHP中csstidy::get_cfg方法的典型用法代码示例。如果您正苦于以下问题:PHP csstidy::get_cfg方法的具体用法?PHP csstidy::get_cfg怎么用?PHP csstidy::get_cfg使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在csstidy的用法示例。


在下文中一共展示了csstidy::get_cfg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: htmlspecialchars

    echo htmlspecialchars($_REQUEST['custom'], ENT_QUOTES, 'utf-8');
} elseif (isset($_COOKIE['custom_template']) && !empty($_COOKIE['custom_template'])) {
    echo htmlspecialchars($_COOKIE['custom_template'], ENT_QUOTES, 'utf-8');
}
?>
</textarea>
          </fieldset>
          <fieldset id="options">
         <legend><?php 
echo $lang[$l][19];
?>
</legend>

            <input onchange="enable_disable_preserve()" type="checkbox" name="preserve_css" id="preserve_css"
                   <?php 
if ($css->get_cfg('preserve_css')) {
    echo 'checked="checked"';
}
?>
 />
            <label for="preserve_css" title="<?php 
echo $lang[$l][52];
?>
" class="help"><?php 
echo $lang[$l][51];
?>
</label><br />


            <input type="checkbox" name="sort_sel" id="sort_sel"
                   <?php 
开发者ID:moscarar,项目名称:cityhow,代码行数:31,代码来源:css_optimiser.php

示例2: htmlspecialchars

            </select><br />
            <label for="custom" class="block">
            <?php echo $lang[$l][18]; ?> </label> <textarea id="custom"
            name="custom" cols="33" rows="4"><?php
               if(isset($_REQUEST['custom']) && !empty($_REQUEST['custom'])) echo
              htmlspecialchars($_REQUEST['custom']);
               elseif(isset($_COOKIE['custom_template']) &&
              !empty($_COOKIE['custom_template'])) echo
              htmlspecialchars($_COOKIE['custom_template']);
               ?></textarea>
          </fieldset>
          <fieldset id="options">
         <legend><?php echo $lang[$l][19]; ?></legend>

            <input onchange="enable_disable_preserve()" type="checkbox" name="preserve_css" id="preserve_css"
                   <?php if($css->get_cfg('preserve_css')) echo 'checked="checked"'; ?> />
            <label for="preserve_css" title="<?php echo $lang[$l][52]; ?>" class="help"><?php echo $lang[$l][51]; ?></label><br />


            <input type="checkbox" name="sort_sel" id="sort_sel"
                   <?php if($css->get_cfg('sort_selectors')) echo 'checked="checked"'; ?> />
            <label for="sort_sel" title="<?php echo $lang[$l][41]; ?>" class="help"><?php echo $lang[$l][20]; ?></label><br />


            <input type="checkbox" name="sort_de" id="sort_de"
                   <?php if($css->get_cfg('sort_properties')) echo 'checked="checked"'; ?> />
            <label for="sort_de"><?php echo $lang[$l][21]; ?></label><br />


            <label for="merge_selectors"><?php echo $lang[$l][22]; ?></label>
            <select style="width:15em;" name="merge_selectors" id="merge_selectors">
开发者ID:JoeJasinski,项目名称:evesch,代码行数:31,代码来源:css_optimiser.php


注:本文中的csstidy::get_cfg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。