本文整理汇总了PHP中return_top函数的典型用法代码示例。如果您正苦于以下问题:PHP return_top函数的具体用法?PHP return_top怎么用?PHP return_top使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了return_top函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: session_chk
function session_chk()
{
$period_time = 180;
session_start();
if (!empty($_SESSION['last_access'])) {
if (mktime() - $_SESSION['last_access'] > $period_time) {
echo 'セッション有効期限切れです。もう一度トップページからやり直してください' . "<br/>" . return_top();
logout_s();
exit;
} else {
$_SESSION['last_access'] = mktime();
}
} else {
$_SESSION['last_access'] = mktime();
}
}
示例2: return_top
<br>
<form action="<?php
echo DELETE_RESULT;
?>
" method="POST">
<input type="submit" name="YES" value="はい"style="width:100px">
<input type="hidden" name="id" value="<?php
echo $_SESSION['userID'];
?>
">
<input type="hidden" name="mode" value="RESULT">
</form><br>
<form action="<?php
echo RESULT_DETAIL;
?>
" method="POST">
<input type="submit" name="NO" value="詳細画面に戻る"style="width:100px">
<input type="hidden" name="mode" value="DETAIL">
</form>
<?php
} else {
echo 'データの取得に失敗しました。次記のエラーにより処理を中断します:' . $result;
}
}
echo return_top();
?>
</body>
</html>
示例3: var_dump
<?php
require_once '../util/defineUtil.php';
require_once '../util/scriptUtil.php';
require_once '../util/dbaccessUtil.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
print 'カートに追加しました';
$code = !empty($_POST["code"]) ? $_POST["code"] : "";
var_dump($_POST["code"]);
if (empty($_COOKIE["code"])) {
setcookie('code', $code, time() + 3600, '/kagoyume/');
} else {
setcookie('code', $_COOKIE["code"] . ' ' . $code, time() + 3600, '/kagoyume/');
}
return_top();
?>
</body>
</html>
示例4: access_ck
function access_ck()
{
echo 'アクセスルートが不正です。もう一度トップページからやり直してください<br>';
echo return_top();
die;
}