“Str_Replace PHP -Variable” Code-Antworten

PHP str_replace

<?php
//str_replace("Original Value", "Value to be replaced", "String");
$result = str_replace("1", "2", "This is number 1");
// Output: This is number 2
?>
Richard Castillo

Str_Replace PHP -Variable

$var1 = 'hello.world';
$var2 = str_replace(".", "-", $var1);
echo $var2; // hello-world
SAMER SAEID

Ähnliche Antworten wie “Str_Replace PHP -Variable”

Fragen ähnlich wie “Str_Replace PHP -Variable”

Weitere verwandte Antworten zu “Str_Replace PHP -Variable” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen