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


PHP Crud::inserir方法代碼示例

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


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

示例1: insereFeeds

 public function insereFeeds($idUser)
 {
     $add_feed1 = new Crud();
     $add_feed1->setTabela('feeds');
     $add_feed1->inserir(array("nome" => "Terra - Tecnologia", "url" => "http://rss.terra.com.br/0,,EI12879,00.xml", "publico" => 1, "id_user" => $idUser));
     $add_feed2 = new Crud();
     $add_feed2->setTabela('feeds');
     $add_feed2->inserir(array("nome" => "BBC News - Latin America", "url" => "http://feeds.bbci.co.uk/news/world/latin_america/rss.xml", "publico" => 1, "id_user" => $idUser));
     $add_feed3 = new Crud();
     $add_feed3->setTabela('feeds');
     $add_feed3->inserir(array("nome" => "Folha Vitória - Entretenimento", "url" => "http://www.folhavitoria.com.br/feed/entretenimento", "publico" => 1, "id_user" => $idUser));
 }
開發者ID:romulo1984,項目名稱:dehbora,代碼行數:12,代碼來源:Usuario.php

示例2: add_feed

function add_feed()
{
    $app = Slim::getInstance();
    $count_erro = 0;
    $erro_url = 0;
    if (!$_POST['nome']) {
        $count_erro += 1;
    } elseif (!$_POST['url']) {
        $count_erro += 1;
    } elseif (!preg_match('|^http(s)?://[a-z0-9-]+(\\.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $_POST['url'])) {
        $erro_url = 1;
    }
    if ($count_erro > 0) {
        $app->flash('errors', 'Os campos <strong>NOME</strong> e <strong>URL</strong> são obrigatórios!');
        $app->redirect(URL_BASE . '/');
        exit;
    } elseif ($erro_url == 1) {
        $app->flash('errors', 'O campo <strong>URL</strong> deve ser um URL válido. (o prefixo http:// é obrigatório)!');
        $app->redirect(URL_BASE . '/');
        exit;
    }
    $nome = $_POST['nome'];
    $url = $_POST['url'];
    $user = $app->view()->getData('user');
    if (isset($_POST['publico'])) {
        $publico = 1;
    } else {
        $publico = 0;
    }
    $add_feed = new Crud();
    $add_feed->setTabela('feeds');
    $a_f = $add_feed->inserir(array("nome" => $nome, "url" => $url, "publico" => $publico, "id_user" => $user['id']));
    if ($a_f) {
        $app->flash('sucesso', 'Feed Adicionado com Sucesso');
        $app->redirect(URL_BASE . '/');
    } else {
        $app->flash('errors', 'O Feed não pode ser adicionado');
        $app->redirect(URL_BASE . '/');
    }
}
開發者ID:romulo1984,項目名稱:dehbora,代碼行數:40,代碼來源:routes.php


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