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


PHP files::putContent方法代碼示例

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


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

示例1: putContent

 function putContent($c)
 {
     return files::putContent($this->root . $this->base_path, $c);
 }
開發者ID:jewelhuq,項目名稱:okatea,代碼行數:4,代碼來源:class.filemanager.php

示例2: switchStatus

 function switchStatus($p)
 {
     $xml_path = $this->location . $p . '/desc.xml';
     $p_info = $this->_getPluginInfo($xml_path);
     $xml = implode('', file($xml_path));
     $active = (int) (!$p_info['active']);
     $xml = preg_replace('|(<' . $this->type . '[^>]*?active=)"([^"]+)([^>]*>)|ms', '$1"' . $active . '$3', $xml);
     if (!files::putContent($xml_path, $xml)) {
         return false;
     }
     return true;
 }
開發者ID:YesWiki,項目名稱:yeswiki-sandstorm,代碼行數:12,代碼來源:class.plugins.php

示例3: die

<?php

// index.php
// Administration de l'extension : initialisations (tables, fichier de configuration) , information etc. : toutes
// opérations réservées à l'administrateur technique de Wikini.
// Vérification de sécurité
if (!defined("TOOLS_MANAGER")) {
    die("acc&egrave;s direct interdit");
}
// Affichage au moyen de la méthode statique buffer::str :
buffer::str('Parametrage de l\'extension akismet ...' . '<br />');
# Liste des thèmes
$plugins_root = dirname(__FILE__) . '/../';
$plugins = new plugins($plugins_root);
$plugins->getPlugins(false);
$plugins_list = $plugins->getPluginsList();
$is_writable = is_writable($plugins_root);
if (!$is_writable) {
    buffer::str('<p>' . sprintf(__('The folder %s is not writable, please check its permissions.'), DC_ECRIRE . '/tools/') . '</p>');
} else {
    buffer::str('<form action="tools.php" method="post">' . '<p><label for="tool_url">' . __('Entrez votre clef Akismet') . ' :</label>' . form::field('akismet_key', 50, '', $akismet_key) . '</p>' . '<p><input type="submit" class="submit" value="' . __('Install') . '" />' . '<input type="hidden" name="p" value="akismet" /></p>' . '</form>');
}
if (isset($_POST['akismet_key'])) {
    $key_path = $plugins->location . $p . '/akismet.key.php';
    $content = "<?php\n" . "\$akismet_key='" . $_POST['akismet_key'] . "';\n" . "?>";
    if (!files::putContent($key_path, $content)) {
        buffer::str('Problème installation de la clef' . '<br />');
    } else {
        buffer::str('Clef installée !' . '<br />');
    }
}
開發者ID:BackupTheBerlios,項目名稱:wikiplug,代碼行數:31,代碼來源:index.php


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