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)//선을 긋다
'개발 꿀팁 > PHP' 카테고리의 다른 글
Laravel의 Json Response에 의한 PHP 기반 인식 (0) | 2022.08.09 |
---|---|
PHP로 명령줄에서 그림 보기 (0) | 2022.08.09 |
PHP의 session을 redis에 넣습니다 (0) | 2022.08.09 |
PHP 상용 암호화 복호화 함수 (0) | 2022.08.09 |
PHP 배열과 문자열 변환 (초상세) (0) | 2022.08.09 |