본문 바로가기
공부/PHP

php str_replace 문자변환 함수(쌍따옴표 변환 및 제거, 공백제거 등)

by yeaseul912 2018. 1. 4.
728x90

둘러보다가 수정하러 들어왔다.(22.05.24)

메뉴얼 페이지도 안열린다. 주소 다시 첨부.

어떤 언어든지 정규 메뉴얼을 보는것을 습관화 하는것이 중요하다.

그리고 제일 정확하다.

[메뉴얼] https://www.php.net/manual/en/function.str-replace.php

 

설명

search : 바꾸고 싶은 글자

replace : 바꿀 글자

subject : 찾아서 바꾸고 싶은 글자가 포함되어있는 전체

count(option) :  subject에서 search하여 replace로 바꾼 문자의 갯수

=> subject에서 발견한 모든 search 주어진 replace 값으로 치환한 문자열이나 배열을 반환합니다.

=> (정규표현식처럼) 복잡한 치환 규칙이 필요하지 않다면ereg_replace() preg_replace() 대신 함수를 사용해야 합니다.

str_replace(
    array|string $search,
    array|string $replace,
    string|array $subject,
    int &$count = null
): string|array
Examples #1 Basic str_replace() exaples
<?php
// %body% 문자열을 black 문자열로 변환하여 주세요
// 결과: <body text='black'>
$bodytag = str_replace("%body%", "black", "<body text='%body%'>");

// 3번째  매개변수에 $vowels 배열 안에 있는 문자는 공백으로 바꿔주세요
// 결과: Hll Wrld f PHP
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");

// $phrase에 있는 문자 중 healthy배열에 포함된 문자는 yummy에 있는 문자로 바꿔주세요.
// 결과: You should eat pizza, beer, and ice cream every day
$phrase  = "You should eat fruits, vegetables, and fiber every day.";
$healthy = array("fruits", "vegetables", "fiber");
$yummy   = array("pizza", "beer", "ice cream");

$newphrase = str_replace($healthy, $yummy, $phrase);

// ll이 ""로 바뀐 횟수를 알려주세요
// 결과: 2
$str = str_replace("ll", "", "good golly miss molly!", $count);
echo $count;
?>

 

 

 

반응형

댓글