search
HomeBackend DevelopmentPHP TutorialPHP generates a random code with optional digits_PHP tutorial

php generates a random code with optional digits

<?php
echo coding(6);
function coding($num){
	$str_arr = array(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;,&#39;d&#39;,&#39;e&#39;,&#39;f&#39;,&#39;g&#39;,&#39;h&#39;,&#39;i&#39;,&#39;j&#39;,&#39;k&#39;,&#39;l&#39;,&#39;m&#39;,&#39;n&#39;,&#39;o&#39;,&#39;p&#39;,&#39;q&#39;,&#39;r&#39;,&#39;s&#39;,&#39;t&#39;,&#39;u&#39;,&#39;v&#39;,&#39;w&#39;,&#39;x&#39;,&#39;y&#39;,&#39;z&#39;,&#39;A&#39;,&#39;B&#39;,&#39;C&#39;,&#39;D&#39;,&#39;E&#39;,&#39;F&#39;,&#39;G&#39;,&#39;H&#39;,&#39;I&#39;,&#39;J&#39;,&#39;K&#39;,&#39;L&#39;,&#39;M&#39;,&#39;N&#39;,&#39;O&#39;,&#39;P&#39;,&#39;Q&#39;,&#39;R&#39;,&#39;S&#39;,&#39;T&#39;,&#39;U&#39;,&#39;V&#39;,&#39;W&#39;,&#39;X&#39;,&#39;Y&#39;,&#39;Z&#39;,&#39;0&#39;,&#39;1&#39;,&#39;2&#39;,&#39;3&#39;,&#39;4&#39;,&#39;5&#39;,&#39;6&#39;,&#39;7&#39;,&#39;8&#39;,&#39;9&#39;);
	$rand_s = array_rand($str_arr,$num);
	$code_s = &#39;&#39;;
	if(is_array($rand_s)){
		foreach($rand_s as $v){
			$code_s .= $str_arr[$v];
		}
		return $code_s;
	}else{
		return $str_arr[&#39;rand_s&#39;];
	}
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1073353.htmlTechArticlephp generates a random code with optional digits?phpecho coding(6);function coding($num){ $str_arr = array(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w ,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,...
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 10专业版的位数是多少?Windows 10专业版的位数是多少?Dec 25, 2023 pm 05:37 PM

windows10专业版是一款非常好用的电脑系统,其中64位和32位都是有的,而且32位的更好用一些,我们下文来讲述的就是32位的优点介绍。windows10专业版是多少位:答:32位和64位都有win10专业版32位和64位都是有的,本文主要介绍的是32位的优点,一起来看看吧。一、卓越的兼容性表现1、首先,我们要强调的是Windows10专业版32位在兼容性上表现得非常优越。它极高的稳定性使得绝大部分的已有的32位应用程序均可顺利运行。2、对于您来说,这就意味着在享受最新操作系统带来的便利的同

计算机一次能直接处理的二进制数据的位数称为什么?计算机一次能直接处理的二进制数据的位数称为什么?Aug 20, 2020 pm 03:44 PM

计算机在处理数据时,一次能直接处理的二进制数据的位数称为:字长。字长是指计算机一次能直接处理的二进制数据的位数,字长越长,计算机的整体性能越强。

在C++中,将给定的四个数字组成的第n个数字的位数在C++中,将给定的四个数字组成的第n个数字的位数Aug 29, 2023 pm 03:01 PM

Weneedtofindthenumberofdigitsinthenthnumbermadeofgivenfourdigits1,2,3,and4.Theserieswiththeabovefourdigitsisasfollows1,2,3,4,11,12,13,14,21,22,23,24...Weneedtofindthenumberofdigitsofthenthnumberfromtheaboveseries.Ifyoucarefullyobservethepattern,youwi

N与C中最大的奇数位数的乘积N与C中最大的奇数位数的乘积Aug 29, 2023 pm 01:25 PM

GivenanumberNwithwehavetoproductthenumberwithitslargestodddigit.Ifthereisnoodddigitthenprint-1.LikewehaveinitializedNwith&ldquo;153&rdquo;andthelargestodddigitinthisnumberis5sotheresultwouldbetheproductof153with5i.e.153*5=765andifthenumberhas

PHP中实现判断数字位数的技巧分享PHP中实现判断数字位数的技巧分享Mar 26, 2024 am 11:03 AM

PHP作为一种流行的服务器端脚本语言,经常被用来处理数字数据。在实际开发中,经常会用到判断数字的位数,本文将分享一些在PHP中实现判断数字位数的技巧,并提供具体的代码示例。一、使用strlen函数PHP中的strlen()函数用于返回字符串的长度,也可以用来判断一个整数的位数。以下是一个示例代码:$num=12345;$length=strlen(

PHP实现判断数字位数的实用代码示例PHP实现判断数字位数的实用代码示例Mar 26, 2024 pm 12:18 PM

PHP实现判断数字位数的实用代码示例在开发过程中,有时我们需要判断一个数字的位数,比如判断一个数字是几位数,或者判断一个数字是否是一个特定位数。下面给出几个实用的PHP代码示例来实现这个功能。判断一个数字是几位数:functioncountDigits($num){$count=strlen((string)$num);re

如何在C语言中计算浮点数中的位数?如何在C语言中计算浮点数中的位数?Sep 08, 2023 pm 10:53 PM

在此问题中,给出了一个浮点值。我们必须找到它的二进制表示中的设置位的数量。例如,如果浮点数是0.15625,则有六个设置位。典型的C编译器使用单精度浮点表示。所以它看起来像这样。要转换为位值,我们必须将数字放入一个指针变量中,然后将指针强制转换为char*类型数据。然后对每个字节进行一一处理。然后我们可以计算每个字符的设置位。示例#include<stdio.h>intchar_set_bit_count(charnumber){&nbsp;&nbsp;unsigne

PHP时间戳的位数通常是多少位?PHP时间戳的位数通常是多少位?Mar 24, 2024 pm 05:33 PM

PHP时间戳通常是10位的,表示从1970年1月1日00:00:00UTC到当前时间经过的秒数。不过,有些系统也可能使用13位的时间戳,表示从1970年1月1日00:00:00UTC到当前时间经过的毫秒数。接下来我将给出具体的代码示例来演示如何使用PHP获取不同位数的时间戳。获取10位时间戳://获取当前时间的10位时间戳$timestamp=

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

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.