개발 꿀팁/PHP

php 인증 코드를 만드는 데 사용되는 함수

Jammie 2022. 8. 9. 12:45
반응형

join() 함수: 배열 요소를 문자열로 결합합니다

<?php
$number = range(0,5);
print_r ($number);
?>

예:

결과: Hello World! I love Shanghai!

range( ): range() 함수는 지정한 범위의 요소를 포함하는 배열을 만듭니다.예:

<?php
$arr = array('Hello','World!','I','love','Shanghai!');
echo join(" ",$arr);
?>

결과:Array ([0] => 0 [1] => 1 [2] = 2 [3] = > 3 [4] = > 4 [5] = 5)

substr(): substr() 함수는 문자열의 일부를 되돌려줍니다.예:

<?php
echo substr("Hello world",6);
?>

결과:world

str_shuffle() : 함수는 문자열의 모든 문자를 랜덤하게 흐트러뜨립니다.

문법:str_shuffle (string)



strtouper() 함수는 문자열을 대문자로 변환합니다.문법: strtoupper (stri)ng)



아이마게크레아tetruecolor() 기능은 imagecreate()와 유사합니다.리얼 컬러의 이미지를 만들어 보다 풍부한 컬러를 지원합니다.imagecreatetruecolor (int x, inty)

아이마지필( ) 함수는 그림 영역을 채우는 데 사용됩니다.문법: bool imagefill( resource image, int x, inty, int color)

아이마지콜로rallocate - 그림의 색상을 지정합니다.문법: intimagecolorallocate (resource) $image, int $red, int $green, int $blue)

mt_rand() Mersenne Twister 알고리즘을 사용하여 임의의 정수를 반환합니다.문법: mt_rand (min, max)

ceil() 함수가장 가까운 정수로 반올림하다.문법: ceil(x)

imagechar( ) - 가로로 쓸 수 있습니다.문법: bool imagechar (r)source $image, int $font, int $x, int $y, string $c, int $color)

bool imagesetpixel (resource $image, int $x, in)t$y,int$color) //단일 화소 그리기

bool imageline (resource $image, int $x1, int $y1,int$x2,int$y2,int$color)//선을 긋다

 

반응형