本文整理汇总了PHP中Pagina::existeDirectorioUbicacion方法的典型用法代码示例。如果您正苦于以下问题:PHP Pagina::existeDirectorioUbicacion方法的具体用法?PHP Pagina::existeDirectorioUbicacion怎么用?PHP Pagina::existeDirectorioUbicacion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pagina
的用法示例。
在下文中一共展示了Pagina::existeDirectorioUbicacion方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: catch
if (isset($_POST[$indiceasociativo])) {
$datos->addUsuario($var);
}
}
foreach ($_SESSION['funcionalidadesSistema'] as &$var) {
$indiceasociativo = str_replace(" ", "_", "ckbxF_" . $var . "");
if (isset($_POST[$indiceasociativo])) {
$datos->addFuncionalidad($var);
}
}
// ----------------------------------------- COMPROBACION DE ERRORES ---------------------------------------------------------
try {
if ($datos->PAG_nombre != $PAG_nombreAnt && Pagina::existePagina($datos->PAG_nombre)) {
$_SESSION["error"] = 'ERR CLAVE P';
} else {
if (!$datos->existeDirectorioUbicacion()) {
$_SESSION["error"] = 'ERR DIRECTORIO';
} else {
if ($_FILES["PAG_fichero"]["error"] != 4 && $_FILES["PAG_fichero"]["error"] != 0) {
$_SESSION["error"] = 'ERR UPLOAD=>Error PHP UPLOAD CODE ' . $_FILES["PAG_fichero"]["error"] . ' -------> http://php.net/manual/es/features.file-upload.errors.php';
}
}
}
/*
Añadir tantos 'else if' como errores se quieran comprobar y en cada uno de ellos
establecer el error producido
*/
} catch (Exception $e) {
$_SESSION["error"] = $e->getMessage();
}
if (isset($_SESSION["error"])) {
示例2: explode
}
}
//Se agregan a la Pagina las funcionalidades que va a tener en funcion de los 'checks' del formulario
foreach ($_SESSION['funcionalidadesSistema'] as &$var) {
$indiceasociativo = str_replace(" ", "_", "ckbxF_" . $var . "");
if (isset($_POST[$indiceasociativo])) {
$objeto->addFuncionalidad($var);
}
}
// ----------------------------------------- COMPROBACION DE ERRORES ---------------------------------------------------------
//Se comprueba errores en los datos
try {
if (Pagina::existePagina($objeto->PAG_nombre)) {
$_SESSION["error"] = 'ERR CLAVE P';
} else {
if (!$objeto->existeDirectorioUbicacion()) {
$_SESSION["error"] = 'ERR DIRECTORIO';
} else {
if ($_FILES["PAG_fichero"]["error"] > 0) {
$_SESSION["error"] = 'ERR UPLOAD=>Error PHP UPLOAD CODE ' . $_FILES["PAG_fichero"]["error"] . ' -------> http://php.net/manual/es/features.file-upload.errors.php';
} else {
if (!move_uploaded_file($_FILES["PAG_fichero"]["tmp_name"], explode('?', '../../..' . $objeto->PAG_ubicacion)[0])) {
$_SESSION["error"] = 'ERR UPLOAD=>Error PHP move_uploaded_file(' . $_FILES["PAG_fichero"]["tmp_name"] . ' , ' . explode('?', $objeto->PAG_ubicacion)[0] . ')';
}
}
}
}
} catch (Exception $e) {
$_SESSION["error"] = $e->getMessage();
}
if (isset($_SESSION["error"])) {