當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。