search
Homephp教程php手册用PHP实现banner轮换的程序代码

程序

    我们曾经访问过这样的网站,每次刷新banner都随机的变化,在这篇文章中,我们将给大家介绍用PHP来实现这个功能。

  步骤

  程序实现的原理是:调用一个数组,每个图象对应一个数组中的元素,然后我们设置随机数,只要随机得到一个数据就可以显示一副图象了。

  第一个步是我们来产生一个随机数。每次刷新时我们都得到不同的随机数,具体代码为:

  srand((float) microtime() * 10000000);

  之后我们设置一个数组为image,然后再设置5个数组元素,代码如下:

  $image[1]='/location/of/image1.jpg';

  $image[2]='/location/of/image2.jpg';

  $image[3]='/location/of/image3.jpg';

  $image[4]='/location/of/image4.jpg';

  $image[5]='/location/of/image5.jpg';

  下面的代码实现的功能是从数组中随机选择一个元素:

  $rn = array_rand($image);

  然后我们来显示一个随机的图片:

  echo '用PHP实现banner轮换的程序代码';

  把上面的代码组合起来就可以了。

  srand((float) microtime() * 10000000);

  $image[1]='/location/of/image1.jpg';

  $image[2]='/location/of/image2.jpg';

  $image[3]='/location/of/image3.jpg';

  $image[4]='/location/of/image4.jpg';

  $image[5]='/location/of/image5.jpg';

  $rn = array_rand($image);

  echo '用PHP实现banner轮换的程序代码';

  以上的代码是我们随机显示图片的代码,如果我们想使每个图片再加上各自的连接地址那么我们把上述的代码稍微改动下就可以了!把上述的数组改为二维数组:

  $image[1]['pic']='/location/of/image1.jpg';

  $image[1]['link']='/location/of/link1.php';

  相应的显示代码为:

  echo '';

  echo '用PHP实现banner轮换的程序代码';

  那么我们就可以完成我们标题的功能了,随机显示图片并且连接到不同的指定的地址:

  srand((float) microtime() * 10000000);

  $image[1]['pic']='/location/of/image1.jpg';

  $image[1]['link']='/location/of/link1.php';

  $image[2]['pic']='/location/of/image2.jpg';

  $image[2]['link']='/location/of/link2.php';

  $image[3]['pic']='/location/of/image3.jpg';

  $image[3]['link']='/location/of/link3.php';

  $image[4]['pic']='/location/of/image4.jpg';

  $image[4]['link']='/location/of/link4.php';

  $image[5]['pic']='/location/of/image5.jpg';

  $image[5]['link']='/location/of/link5.php';

  $rn = array_rand($image);

  echo '';

  echo '用PHP实现banner轮换的程序代码';

  你可以把上面的代码拷到你的网页中去运行了。祝你好运



Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在 Windows 11 上将 PNG 转换为 JPG如何在 Windows 11 上将 PNG 转换为 JPGMay 12, 2023 pm 03:55 PM

如何在Windows11上将PNG转换为JPG在Windows10和11上,您可以使用Microsoft内置的Paint应用程序快速转换图像文件。要在Windows11上将PNG图像转换为JPG,请使用以下步骤:打开文件资源管理器并导航到要转换的PNG图像。右键单击图像并从菜单中选择打开方式>绘制。您的照片或图像会在“画图”应用中打开。注意屏幕底部的文件大小。要将文件从PNG转换为JPG,请单击文件并从菜单中选择另存为>JPEG图片。当文件资源

修复:无法在 Windows 11 中打开 JPG 文件修复:无法在 Windows 11 中打开 JPG 文件Apr 17, 2023 pm 12:37 PM

JPG是与PNG一起最流行的图像文件格式之一。这是一种有损压缩图像格式,非常适合网站。因此,许多用户将图像保存或转换为JPG格式。但是,一些用户表示他们在使用该平台的默认照片应用程序在Windows11中打开JPG文件时遇到了问题。因此,这些用户无法在Windows11中打开、查看和编辑JPG格式的图像。这是一位用户在Microsoft论坛帖子中所说的:双击JPG文件以在MicrosoftPhoto中打开时,我收到错误找不到指定的程序。这是在大约一个月前购买的一台新

聊聊怎么用php轻松实现WebP转JPG的功能聊聊怎么用php轻松实现WebP转JPG的功能Mar 24, 2023 pm 02:57 PM

近年来,随着Web技术的不断发展,WebP这种新型图片格式逐渐走进了程序员和Web开发者的视野。WebP优点不容忽视:文件体积小、质量高、浏览器支持度高等。但是在某些情况下,我们可能需要把WebP图片转换成一些其他格式的图片,比如JPG。那么,如何用PHP实现WebP转换为JPG的功能呢?

jpg是什么格式文件jpg是什么格式文件Jun 21, 2023 am 11:36 AM

JPG是JPEG格式文件,JPEG格式是最常用的图像文件格式,后缀名为“.jpg”或“.jpeg”。JPG的格式标准分为JPEG、渐进式JPEG、JPEG2000等三种,一般用于连续色调静态图像压缩的一种标准,是有损压缩,将数据图像压缩在小存储空间的同时,造成图像数据的损伤,如果用户对图像质量要求较高的话,建议舍弃这种图像文件格式,特别是对于一些高清图片。

Nginx服务器中location配置实例分析Nginx服务器中location配置实例分析May 24, 2023 pm 02:05 PM

首先我来大概的介绍一下location的种类和匹配规则,以nginxwiki的例子做说明:location=/{#matchesthequery/only.[configurationa]}location/{#matchesanyquery,sinceallqueriesbeginwith/,butregular#expressionsandanylongerconventionalblockswillbe#matchedfirst.[configurationb]}location^~/im

jpg是什么意思jpg是什么意思Nov 28, 2022 am 09:46 AM

JPG一般是指JPEG格式,是一种使用有损压缩方法保存的图像格式,是用于连续色调静态图像压缩的一种标准,其文件后缀名为“.jpg”或“.jpeg”。JPG文件主要是采用预测编码(DPCM)、离散余弦变换(DCT)以及熵编码的联合编码方式,以去除冗余的图像和彩色数据;它能够将图像压缩在很小的储存空间,但一定程度上会造成图像数据的损伤。

如何免费使用Bing Image Creator如何免费使用Bing Image CreatorFeb 27, 2024 am 11:04 AM

本文将介绍七种利用免费的BingImageCreator获得高质量输出的方法。BingImageCreator(现称为MicrosoftDesigner的ImageCreator)是一个出色的在线人工智能艺术生成器之一。它能根据用户的提示生成高度逼真的视觉效果。提示越具体、清晰和创意,生成的效果也会更出色。BingImageCreator在创建高质量图像方面取得了重大进展。它现在使用Dall-E3培训模式,显示出更高水平的细节和现实主义。然而,它能否始终如一地生成高清结果取决于几个因素,包括快速

小米手机image怎么删除小米手机image怎么删除Mar 02, 2024 pm 05:34 PM

小米手机image怎么删除?在小米手机中是可以删除image,但是多数的用户不知道image如何的删除,接下来就是小编为用户带来的小米手机image删除方法教程,感兴趣的用户快来一起看看吧!小米手机image怎么删除1、首先打开小米手机中的【相册】功能;2、然后勾选不需要的图片,点击右下角的【删除】按钮;3、之后点击最顶部的【相册】进入到专区,选择【回收站】;4、接着直接点击下图所示的【清空回收站】;5、最后直接点击【永久删除】即可完成。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment