PHP를 사용하여 한 페이지에서 다른 페이지로 이동하는 방법: PHP 스크립트에 [header("location:url address")] 코드를 추가하기만 하면 됩니다. 점프를 지연시키려는 경우 코드는 [header("Refresh: second; url=address")]입니다.
이 기사의 운영 환경: windows10 시스템, PHP 7.3, thinkpad t480 컴퓨터.
PHP 스크립트 코드에서
<?php header("location:url地址") ?>
를 구현합니다. 예를 들어 헤더가 위치 리디렉션을 수행하므로
<?php header("location:helloworld.php") ?>
페이지가 즉시 이동합니다.
지연 점프(예: 로그인 성공 후 몇 초의 대기 시간이 있다가 다른 페이지로 점프합니다.)
<?php header("Refresh:秒数;url=地址") ?>
예를 들어
<?php header("Refresh:3;url=helloworld.php") ?>
는 3초 후에 점프를 실행합니다
<?php sleep(3); header("location:url地址") ?>
(동영상 공유 학습 :php video tutorial)
sleep() 메소드를 호출하여 Delayed Jump 후 점프를 실행하는 효과
<script type="text/javascript"> window.location.href="helloworld.php" </script>
<script type="text/javascript"> setTimeout("window.location.href='helloworld.php'",3000);</script>
<script type="text/javascript">window.location.assign("helloworld.php");</script>
<script type="text/javascript"> window.location.replace("helloworld.php");</script>
<script type="text/javascript"> window.open("index.php",_blank,width=300px);</script>
php 튜토리얼
위 내용은 PHP에서 한 페이지에서 다른 페이지로 이동하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!