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


PHP api::iniciaApi方法代碼示例

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


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

示例1: header

<?php

/**
*
* myteam
*
* @Versão 1.0
* @Desenvolvedor Jeison Frasson <jomadee@lliure.com.br>
* @Entre em contato com o desenvolvedor <jomadee@lliure.com.br> http://www.lliure.com.br/
* @Licença http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
define('appTabela', PREFIXO . 'myteam');
if (isset($_GET['id']) && empty($_GET['id'])) {
    jf_insert(appTabela);
    header('location: ' . $_ll['app']['home'] . '&id=' . $jf_ultimo_id);
    die;
}
$apigem = new api();
$apigem->iniciaApi('navigi');
$apigem->inicia('tags');
開發者ID:jomadee,項目名稱:myteam,代碼行數:21,代碼來源:header.php

示例2: array

     jf_insert(PREFIXO . 'comunidade_topicos', $topico);
     $id_topico = $jf_ultimo_id;
     $mensagem = array('topico' => $id_topico, 'user' => $_SESSION['sh']['id'], 'mensagem' => $_POST['mensagem'], 'data' => $data);
     jf_insert(PREFIXO . 'comunidade_mensagens', $mensagem);
     header('location: ' . $shHome . $_GET[1] . '/forum/' . $id_topico);
     break;
 case 'pes':
     $pes = '';
     if (!empty($_POST['pesquisa'])) {
         $pes = '/pes=' . str_replace(' ', '+', urlencode(mb_strtolower($_POST['pesquisa'])));
     }
     header('location: ' . $shHome . $_GET[1] . '/forum' . $pes);
     break;
 case 'envi':
     $apigem = new api();
     $apigem->iniciaApi('sciigo');
     $inser['topico'] = $_GET[3];
     $inser['user'] = $_SESSION['sh']['id'];
     $inser['mensagem'] = $_POST['mensagem'];
     $inser['data'] = time();
     if ($erro = jf_insert(PREFIXO . 'comunidade_mensagens', $inser)) {
         echo $erro;
     }
     $query = mysql_query('select * from ' . PREFIXO . 'comunidade_mensagens where topico =  "' . $_GET[3] . '" and user != "' . $_SH['user']['id'] . '" order by id desc limit 12');
     while ($dados = mysql_fetch_assoc($query)) {
         $view[] = $dados['user'];
     }
     $not = new sciigo();
     $not->tipo = 8;
     $not->link = 'comunidade/' . $_GET[1] . '/forum/' . $_GET[3] . '/pag=ultima';
     $not->view = $view;
開發者ID:jomadee,項目名稱:hub,代碼行數:31,代碼來源:onserver.php

示例3: api

<?php

/**
*
* myteam
*
* @Versão 1.0
* @Licença http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!empty($_POST) && isset($_GET['id'])) {
    $apigem = new api();
    $apigem->iniciaApi('fileup');
    $file = new fileup();
    $file->diretorio = '../uploads/myteam/';
    $file->up();
    echo jf_update(appTabela, $_POST, array('id' => $_GET['id']));
    header('location:' . $_ll['app']['home']);
}
開發者ID:jomadee,項目名稱:myteam,代碼行數:19,代碼來源:onserver.php


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