本文整理匯總了PHP中DupUtil::esc_html_attr方法的典型用法代碼示例。如果您正苦於以下問題:PHP DupUtil::esc_html_attr方法的具體用法?PHP DupUtil::esc_html_attr怎麽用?PHP DupUtil::esc_html_attr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DupUtil
的用法示例。
在下文中一共展示了DupUtil::esc_html_attr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
echo '<option selected="selected" value="' . DupUtil::esc_html_attr($table) . '">' . $table . '</option>';
}
?>
</select>
</td>
<td valign="top">
Activate Plugins
<div class="dup-step2-allnonelinks">
<a href="javascript:void(0)" onclick="$('#plugins option').prop('selected',true);">[All]</a>
<a href="javascript:void(0)" onclick="$('#plugins option').prop('selected',false);">[None]</a>
</div><br style="clear:both" />
<select id="plugins" name="plugins[]" multiple="multiple" style="width:315px; height:100px">
<?php
foreach ($active_plugins as $plugin) {
echo '<option selected="selected" value="' . DupUtil::esc_html_attr($plugin) . '">' . dirname($plugin) . '</option>';
}
?>
</select>
</td>
</tr>
</table><br/>
<input type="checkbox" name="postguid" id="postguid" value="1" /> <label for="postguid">Keep Post GUID unchanged</label><br/>
<input type="checkbox" name="fullsearch" id="fullsearch" value="1" /> <label for="fullsearch">Enable Full Search <small>(very slow)</small> </label><br/>
<br/><br/><br/><br/>
</div>
<div class="dup-footer-buttons">