当前位置: 首页>>代码示例>>PHP>>正文


PHP Conexion::get_rows方法代码示例

本文整理汇总了PHP中Conexion::get_rows方法的典型用法代码示例。如果您正苦于以下问题:PHP Conexion::get_rows方法的具体用法?PHP Conexion::get_rows怎么用?PHP Conexion::get_rows使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Conexion的用法示例。


在下文中一共展示了Conexion::get_rows方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Existe_Presupuesto

 public function Existe_Presupuesto($id_concepto, $tipo_presupuesto)
 {
     $query = sprintf("select * from presupuesto where p_concepto = '%s' and p_tipo = '%s' and p_ano = YEAR(CURDATE())", $id_concepto, $tipo_presupuesto);
     $result = parent::consultar($query);
     if (parent::get_rows() > 0) {
         $row = mysql_fetch_assoc($result);
         return $row;
     } else {
         return NULL;
     }
 }
开发者ID:hackdracko,项目名称:belcorp,代码行数:11,代码来源:Presupuesto.php

示例2: Max_Proveedor

 public function Max_Proveedor()
 {
     $query = sprintf("SELECT (MAX(pro_id)) FROM proveedores");
     $result = parent::consultar($query);
     $row = 0;
     if (parent::get_rows() > 0) {
         $row = mysql_fetch_assoc($result);
     }
     $result1 = $row['(MAX(pro_id))'];
     $result1 = $result1 + 1;
     return $result1;
 }
开发者ID:hackdracko,项目名称:belcorp,代码行数:12,代码来源:Proveedor.php

示例3: Existe_PP

 public function Existe_PP($cc_id, $finicial, $ffinal)
 {
     $FI = explode("-", $finicial);
     $FF = explode("-", $ffinal);
     $query = sprintf("SELECT * FROM periodo_presupuestal WHERE cc_id = {$cc_id} AND pp_periodo_inicial = '" . $FI[2] . "-" . $FI[1] . "-" . $FI[0] . "' AND pp_periodo_final = '" . $FF[2] . "-" . $FF[1] . "-" . $FF[0] . "' ");
     $result = parent::consultar($query);
     if (parent::get_rows() > 0) {
         $row = mysql_fetch_assoc($result);
         return $row;
     } else {
         return NULL;
     }
 }
开发者ID:hackdracko,项目名称:envasadoras,代码行数:13,代码来源:Presupuesto.php

示例4: Busca_ConceptoXIdentificadorAndCeco

 /**
  * Busca concepto por cuenta y ceco
  */
 public function Busca_ConceptoXIdentificadorAndCeco($cuenta, $ceco, $identificador)
 {
     //$queryceco=sprintf("SELECT cc_id from cecos where cc_codigo=%s",$ceco);
     $query = sprintf("SELECT cg_id FROM conceptos_gastos WHERE cg_cuenta = '%s' AND cg_ceco = '%s' AND cg_identificador = '%s'", $cuenta, $ceco, $identificador);
     // 		$query=sprintf("SELECT cg_id FROM conceptos_gastos AS cg
     // 					INNER JOIN  cecos AS cc
     // 					ON (cc.cc_id = cg.cg_ceco)
     // 					WHERE cg.cg_identificador = '%s'
     // 					AND cc.cc_codigo = '%s'",
     // 					$identificador, $ceco);
     error_log($query);
     $result = parent::consultar($query);
     if (parent::get_rows() > 0) {
         $row = mysql_fetch_assoc($result);
         return $row;
     } else {
         return NULL;
     }
 }
开发者ID:hackdracko,项目名称:belcorp,代码行数:22,代码来源:ConceptoGasto.php

示例5: Conexion

require_once "../lib/php/constantes.php";
require_once "../Connections/fwk_db.php";
require_once "../lib/php/configuracion.mailgun.php";
$conexion = new Conexion();
$directorioSalida = realpath(dirname(__FILE__) . "/../../respaldoxml");
$mensaje = "";
ini_set('memory_limit', '1024M');
set_time_limit(6000);
$mensaje .= logger("INFO", "=======================");
$mensaje .= logger("INFO", "Comienza Proceso");
$mensaje .= logger("INFO", "Creando conexion a BD");
$mensaje .= logger("INFO", "Consultando facturas por procesar");
$sql = "SELECT DATE_FORMAT(t_fecha_cierre, '%Y%m%d') AS t_fecha_cierre, uuid, factura.id_factura, dc_comprobacion, urlMD5, c_folio, YEAR(t_fecha_cierre) as year, DATE_FORMAT(t_fecha_cierre, '%m') as month\r\n\t\t\tFROM factura \r\n\t\t\tJOIN detalle_comprobacion ON detalle_comprobacion.id_factura = factura.id_factura\r\n\t\t\tJOIN comprobaciones ON dc_comprobacion = co_id\r\n\t\t\tJOIN tramites ON co_mi_tramite = t_id\r\n\t\t\tWHERE f_procesada = 0\r\n\t\t\tAND t_etapa_actual = 3\r\n\t\t\t\r\n\t\t\tUNION \r\n\t\t\t\r\n\t\t\tSELECT DATE_FORMAT(t_fecha_cierre, '%Y%m%d') AS t_fecha_cierre, uuid, factura.id_factura, dc_comprobacion, urlMD5, c_folio, YEAR(t_fecha_cierre) as year, DATE_FORMAT(t_fecha_cierre, '%m') as month\r\n\t\t\tFROM factura \r\n\t\t\tJOIN detalle_comprobacion_gastos ON detalle_comprobacion_gastos.id_factura = factura.id_factura\r\n\t\t\tJOIN comprobaciones ON dc_comprobacion = co_id\r\n\t\t\tJOIN tramites ON co_mi_tramite = t_id\r\n\t\t\tWHERE f_procesada = 0\r\n\t\t\tAND t_etapa_actual = 3\r\n\t\t\t\r\n\t\t\tGROUP BY id_factura\r\n\t\t\t";
$res = $conexion->consultar($sql);
$row = $conexion->get_data_array($res);
$tot = $conexion->get_rows($res);
$mensaje .= logger("INFO", "{$tot} Facturas encontradas");
foreach ($row as $key => $val) {
    try {
        $facturaString = file_get_contents(dirname(__FILE__) . "/../flujos/comprobaciones/" . $val["urlMD5"] . ".xml");
        $facturaXml = new SimpleXMLElement($facturaString);
        $receptor = $facturaXml->xpath("//cfdi:Receptor");
        $rfcReceptor = (string) $receptor[0]["rfc"];
        if (!validaDirectorio($directorioSalida, $rfcReceptor)) {
            creaDirectorio($directorioSalida, $rfcReceptor);
        }
        if (!validaDirectorio($directorioSalida . "/" . $rfcReceptor, $val["year"])) {
            creaDirectorio($directorioSalida . "/" . $rfcReceptor, $val["year"]);
        }
        if (!validaDirectorio($directorioSalida . "/" . $rfcReceptor . "/" . $val["year"], $val["month"])) {
            creaDirectorio($directorioSalida . "/" . $rfcReceptor . "/" . $val["year"], $val["month"]);
开发者ID:hackdracko,项目名称:envasadoras,代码行数:31,代码来源:proceso.php


注:本文中的Conexion::get_rows方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。