本文整理匯總了PHP中class_funciones_cxp::uf_obtenertipo方法的典型用法代碼示例。如果您正苦於以下問題:PHP class_funciones_cxp::uf_obtenertipo方法的具體用法?PHP class_funciones_cxp::uf_obtenertipo怎麽用?PHP class_funciones_cxp::uf_obtenertipo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類class_funciones_cxp
的用法示例。
在下文中一共展示了class_funciones_cxp::uf_obtenertipo方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
<?php
session_start();
if (!array_key_exists("la_logusr", $_SESSION)) {
print "<script language=JavaScript>";
print "close();";
print "opener.document.form1.submit();";
print "</script>";
}
require_once "class_folder/class_funciones_cxp.php";
$io_fun_cxp = new class_funciones_cxp();
$ls_tipo = $io_fun_cxp->uf_obtenertipo();
$ls_nomestpro1 = $_SESSION["la_empresa"]["nomestpro1"];
$ls_nomestpro2 = $_SESSION["la_empresa"]["nomestpro2"];
$ls_modalidad = $_SESSION["la_empresa"]["estmodest"];
switch ($ls_modalidad) {
case "1":
// Modalidad por Proyecto
$ls_titulo = "Catalogo de Estructura Presupuestaria " . $ls_nomestpro2;
break;
case "2":
// Modalidad por Presupuesto
$ls_titulo = "Catalogo de Estructura Programática " . $ls_nomestpro2;
break;
}
$ls_codestprog1 = $io_fun_cxp->uf_obtenervalor_get_post("1", "codestpro1", "txtcodestpro1", "");
$ls_denestprog1 = $io_fun_cxp->uf_obtenervalor_get_post("1", "denestpro1", "txtdenestpro1", "");
$ls_estcla = $io_fun_cxp->uf_obtenervalor_get_post("1", "estcla", "estcla", "");
unset($io_fun_cxp);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"