要在页面加载 10 秒后调用 PHP 中的函数,可以通过结合 JavaScript 和 PHP 来实现。以下是实现这一功能的步骤:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Call PHP Function After 10 Seconds</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<!-- 页面内容 -->
<script>
setTimeout(function() {
$.ajax({
url: 'call_function.php',
method: 'GET',
success: function(response) {
console.log(response);
},
error: function(xhr, status, error) {
console.error(error);
}
});
}, 10000);
</script>
</body>
</html>
<?php
function myFunction() {
// 这里是你要执行的 PHP 函数逻辑
echo "PHP function called successfully!";
}
// 调用函数
myFunction();
?>
这种技术常用于以下场景:
max_execution_time
来延长脚本执行时间。max_execution_time
来延长脚本执行时间。通过上述方法,你可以在页面加载 10 秒后调用 PHP 中的函数。希望这对你有所帮助!
领取专属 10元无门槛券
手把手带您无忧上云