本文整理汇总了PHP中Conexion::cerrar方法的典型用法代码示例。如果您正苦于以下问题:PHP Conexion::cerrar方法的具体用法?PHP Conexion::cerrar怎么用?PHP Conexion::cerrar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Conexion
的用法示例。
在下文中一共展示了Conexion::cerrar方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: findAll
public function findAll()
{
$conexion = new Conexion();
$sql = "SELECT * FROM " . $this->tabla;
$consulta = mysqli_query($conexion->obtener(), $sql);
$conexion->cerrar();
return mysqli_fetch_object($consulta);
}
示例2: define
<?php
define('CONTROLADOR', TRUE);
require_once 'modelos/Personaje.php';
$personaje_id = isset($_REQUEST['personaje_id']) ? $_REQUEST['personaje_id'] : null;
if ($personaje_id) {
$personaje = Personaje::buscarPorId(Conexion::getInstancia(), $personaje_id);
$personaje->eliminar(Conexion::getInstancia());
Conexion::cerrar();
header('Location: index.php');
}
示例3: Conexion
<?php
session_start();
if (isset($_SESSION['tipo']) && !empty($_SESSION['tipo'])) {
if ($_SESSION['tipo'] == "administrador") {
require "../includes/respaldo.php";
$base = new Conexion();
$base->conectar();
$base->respaldo();
$base->cerrar();
} else {
echo "<script>\n window.location='../index.php';\n </script>\n";
}
} else {
echo "<script>\n window.location='../index.php';\n </script>\n";
}