gpt4 book ai didi

php - 如何在 PHP 中随机化背景图像?

转载 作者:太空宇宙 更新时间:2023-11-04 03:21:25 24 4
gpt4 key购买 nike

我关注了this tutorial但它不起作用,这是我的脚本:

<?php
function ceklogin(){
session_start();
if ($_SESSION['loggedin'] != 1) {
header("Location: login.php");
exit;
}}
function css(){

$bg = array('images/angel-beats1.jpg', 'images/angel-beats2.jpg', 'images/angel-beats3.jpg'); // array of filenames

$i = rand(0, count($bg)-1); // generate random number size of the array
$selectedBg = "$bg[$i]"; // set variable equal to which random filename was chosen

echo '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>OpenWrt Angel Beats Edition (v1.0)</title>
<style type="text/css">
body {
margin-left: 0px;
margin-right: 0px;
background: url(images/<?php echo $selectedBg; ?>) no-repeat;
background-size:cover;
}
</style>
</head>
<body> bla bla bla
</body>
</html>';
?>

我哪里错了?我的图像在一个名为“图像”的文件夹中,stackoverflow 一直告诉我添加更多详细信息,但我认为我只能提供这些。

最佳答案

shuffle($bg);

然后 echo $bg[0];

您正在使用复杂的代码来完成一项简单的工作。

关于php - 如何在 PHP 中随机化背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27829659/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com