str_replace
PHP -> Funkcie -> Funkcie pre prácu s reťazcami PHP -> str_replace
Syntax
mixed str_replace ( mixed $search, mixed $replace, mixed $subject [, int &$count] )
Popis
Príkaz jazyka PHP nahradí všechny výskyty jednoho řetězce dalším řetězcem.
Tato funkce nahradí všechny výskyty search v argumentu subject argumentem replace. Pokud nepotřebujete složitá pravidla pro nahrazování, měli byste vždy použít tuto funkci místo ereg_replace nebo preg_replace.
Od PHP 4.0.5 může být každý parametr funkce str_replace() typu array.
Príklad
<?php
// Vrátí: <body text='black'>
$bodytag = str_replace("%body%", "black", "<body text='%body%'>");
// Vrátí: Hll Wrld f PHP
$samohasky = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($samohasky, "", "Hello World of PHP");
// Vrátí: 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);
// Parametr count je k dispozici od PHP 5.0.0
$str = str_replace("ll", "", "good golly miss molly!", $count);
echo $count; // 2
?>
// Vrátí: <body text='black'>
$bodytag = str_replace("%body%", "black", "<body text='%body%'>");
// Vrátí: Hll Wrld f PHP
$samohasky = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($samohasky, "", "Hello World of PHP");
// Vrátí: 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);
// Parametr count je k dispozici od PHP 5.0.0
$str = str_replace("ll", "", "good golly miss molly!", $count);
echo $count; // 2
?>
Pozri aj
str_ireplace, ereg_replace, preg_replace