반응형
발견한 모든 검색 문자열을 치환 문자열로 교체.
mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
subject 에서 발견한 모든 search 를 주어진 replace 값으로 치환한 문자열이나 배열을 반환
(정규표현식처럼) 복잡한 치환 규칙이 필요하지 않다면, preg_replace() 대신 이 함수를 사용
<?php
// 결과: <body text='black'>
$bodytag = str_replace("%body%", "black", "<body text='%body%'>");
// 결과: Hll Wrld f PHP
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
// 결과: 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);
// PHP 5.0.0부터 사용할 수있는 count 인수 사용
$str = str_replace("ll", "", "good golly miss molly!", $count);
echo $count; // 2
// 교체 순서
$str = "Line 1\nLine 2\rLine 3\r\nLine 4\n";
$order = array("\r\n", "\n", "\r");
$replace = '<br />';
// \r\n을 먼처 처리해서 두번 변환되지 않도록 합니다.
$newstr = str_replace($order, $replace, $str);
// 출력: apearpearle pear
$letters = array('a', 'p');
$fruit = array('apple', 'pear');
$text = 'a p';
$output = str_replace($letters, $fruit, $text);
echo $output;
?>
반응형
'PROGRAMING > PHP' 카테고리의 다른 글
[PHP] cURL을 통한 웹페이지 읽어들이기 (0) | 2011.05.25 |
---|---|
[PHP] Server and execution environment information (0) | 2011.04.20 |
[PHP] Http -> Https redirect (0) | 2011.04.20 |