本文整理汇总了PHP中functions::file_check方法的典型用法代码示例。如果您正苦于以下问题:PHP functions::file_check方法的具体用法?PHP functions::file_check怎么用?PHP functions::file_check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类functions
的用法示例。
在下文中一共展示了functions::file_check方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: functions
<?php
include_once "functions.inc.php";
$functions = new functions();
if (getenv("REQUEST_METHOD") == "GET") {
$functions->error_alert_location("정상적으로 접근 바랍니다.", "index.php");
}
@unlink("../include/mysql.info.php");
if ($functions->file_permission("../include/") == FALSE || $functions->file_permission("../upload/sessionCookies/") == FALSE || $functions->file_permission("../upload/siteInformations/") == FALSE || $functions->file_permission("../upload/smartEditor/") == FALSE) {
$functions->error_alert_location("1단계가 진행되지 않았습니다.", "index.php");
}
if ($functions->file_check("../include/path.info.php") == FALSE) {
$functions->error_alert_location("1단계가 진행되지 않았습니다.", "index.php");
}
$host = $_POST['host'];
$db = $_POST['db'];
$id = $_POST['id'];
$password = $_POST['password'];
$connect = @mysql_connect($host, $id, $password);
mysql_select_db($db, $connect);
if (mysql_query("select * from toony_member_list", $connect) && mysql_num_rows(mysql_query("select * from toony_member_list", $connect)) > 0) {
$installedDB = TRUE;
$insertAdminDB = TRUE;
} else {
if (mysql_query("select * from toony_member_list", $connect) && mysql_num_rows(mysql_query("select * from toony_member_list", $connect)) < 1) {
$installedDB = TRUE;
$insertAdminDB = FALSE;
} else {
$installedDB = FALSE;
$insertAdminDB = FALSE;
}
示例2:
</header>
<form name="" action="step2.php" method="post">
<article>
<?php
if ($functions->reinstallCheck() == TRUE) {
?>
<div class="alert">
<strong>Warning :</strong><br />
이미 <strong>path.info.php</strong>, <strong>mysql.info.php</strong> 가 생성되어 있습니다.<br />
현재 화면이 강제적으로 보여지는 경우 서버 이전, 도메인 변경등으로 info 파일이 손상된 것이므로
아래 [다음 단계로] 를 클릭하여
info 파일 재생성을 진행해 주시길 바랍니다.
</div>
<?php
} else {
if ($functions->file_check("../include/mysql.info.php") == TRUE && $functions->file_check("../include/path.info.php") == FALSE) {
?>
<div class="alert">
<strong>Warning :</strong><br />
<strong>path.info.php</strong>가 손상 되었으며,<br />
이미 <strong>mysql.info.php</strong> 가 생성되어 있습니다.<br />
info 파일 재생성을 진행해 주시길 바랍니다.
</div>
<?php
}
}
?>
<div class="inner">
<div class="t">
<strong>1단계</strong>투니툴 파일의 퍼미션 설정 여부를 검사 합니다.
</div>