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


PHP client::getClientList方法代碼示例

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


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

示例1: client

<?php

//RECUPERACIO D'UNA TAULA LA BASE DE DADES//
////////////////////////////////////////////
//Carregar codi de la Classe client
require 'classes/client.class.php';
if ($_GET['action'] == 'ClientList') {
    //Instància de l'objecte
    $obj_client = new client();
    //Invocar mètode (Recollir tots les incidencies)
    $consulta = $obj_client->getClientList();
    //Cal que el primer index sigui 1 (per poder usar foreach en JS)
    for ($i = 1; $dades[$i] = mysql_fetch_array($consulta); $i++) {
    }
    array_pop($dades);
    //Eliminar l'últim ja que crea un últim element buid
    //Enviar capaçalera indicant JSON
    header('Content-type: application/json');
    //Codificar en JSON i retornar petició en un array entenible per JS
    echo json_encode($dades);
}
if ($_GET['action'] == 'InserirClient') {
    $client = json_decode($_GET['client']);
    $obj_client = new client();
    $obj_client->add($client);
}
開發者ID:sesiomterim,項目名稱:BugNest,代碼行數:26,代碼來源:clients.php

示例2: u

     if ($client->fails()) {
         $app->view->setData('error', "1");
         $app->view->setData('msg', $client->getError());
         $app->render(new u('msg'));
     } else {
         $app->view->setData('success', "1");
         $app->view->setData('msg', "Successfully Client Added");
         $app->render(new u('msg'));
     }
 });
 //Show
 $app->get('/view', function () use($app) {
     $getclientList = new client();
     // $dues = $getclientList->sumDueLimit();
     // $app->view->setData('sumdues',$dues );
     $cols = $getclientList->getClientList();
     $app->view->setData('rows', $cols);
     $app->render(new u('client.view'));
 });
 /******************Add Balance Data Processing **************************************************/
 $app->post('/confirm_add_balance', function () use($app) {
     $POST = $app->request()->post();
     $client = new client($POST);
     $client->saveAddBalance();
     if ($client->fails()) {
         $app->view->setData('error', "1");
         $app->view->setData('msg', $client->getError());
         $app->render(new u('msg'));
     } else {
         $app->view->setData('success', "1");
         $app->view->setData('msg', "Successfully Balance Added");
開發者ID:bogiesoft,項目名稱:Slim_PHP_Project,代碼行數:31,代碼來源:client_route.php


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