當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SiteConfig::build_from_array方法代碼示例

本文整理匯總了PHP中SiteConfig::build_from_array方法的典型用法代碼示例。如果您正苦於以下問題:PHP SiteConfig::build_from_array方法的具體用法?PHP SiteConfig::build_from_array怎麽用?PHP SiteConfig::build_from_array使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SiteConfig的用法示例。


在下文中一共展示了SiteConfig::build_from_array方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: htmlspecialchars

echo '<input type="submit" class="btn btn-primary" value="Save" /> ';
echo 'or <a href="edit-pattern.php" class="btn" >Cancel and return to listing</a>';
echo '</form>';
// DELETE option
if (!empty($matched)) {
    echo '<hr /><h3>Delete file?</h3>';
    echo '<p>Delete <strong>' . htmlspecialchars($file_location) . '</strong></p>';
    echo '<form method="POST" action="edit-pattern.php" onsubmit="return confirm(\'Are you sure?\');">';
    echo '<input type="hidden" name="delete" value="' . htmlspecialchars(basename($file_location)) . '" />';
    echo '<input type="hidden" name="delete_dir" value="' . (strpos($file_location, '/standard/') ? 'standard' : 'custom') . '" />';
    echo '<input type="submit" value="Delete" class="btn btn-danger" />';
    echo '</form>';
}
// TEST URLs
if (!empty($matched)) {
    if ($sconfig = SiteConfig::build_from_array(explode("\n", $contents))) {
        if (!empty($sconfig->test_url)) {
            echo '<hr /><h3>Test URLs</h3>';
            echo '<ul>';
            foreach ($sconfig->test_url as $test_url) {
                $ftr_test_url = $test_url;
                if (strtolower(substr($ftr_test_url, 0, 7)) == 'http://') {
                    $ftr_test_url = substr($ftr_test_url, 7);
                }
                $ftr_test_url = '../makefulltextfeed.php?url=' . urlencode($ftr_test_url);
                echo '<li>';
                echo '<a href="' . htmlspecialchars($test_url) . '" target="_blank">' . htmlspecialchars($test_url) . '</a>';
                echo ' | <a href="' . $ftr_test_url . '" target="_blank">Full-Text RSS result</a>';
                echo ' | <a href="' . $ftr_test_url . '&debug" target="_blank">Debug</a>';
                echo '</li>';
            }
開發者ID:yangchenghu,項目名稱:full-text-rss,代碼行數:31,代碼來源:edit-pattern.php


注:本文中的SiteConfig::build_from_array方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。