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


PHP functions::file_check方法代码示例

本文整理汇总了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;
    }
开发者ID:devwit,项目名称:toonytool,代码行数:31,代码来源:step3.php

示例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>
开发者ID:devwit,项目名称:toonytool,代码行数:31,代码来源:index.php


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