“PHP Zastąp miejsce na deskę rozdzielczą” Kod odpowiedzi

PHP Zastąp przestrzenie na deskę rozdzielczą

str_replace(' ', '-', $string);
Xanthous Xenomorph

PHP Zastąp miejsce na deskę rozdzielczą

<?php 
  $string = "hello php";
  $replace = str_replace(" ", "_", $string);
  echo $replace; // hello_php
?>
Programming Is Fun

PHP Zastąp wszystkie przestrzenie na kretyki

// Clean up multiple dashes or whitespaces
$string = preg_replace("/[\s-]+/", " ", $string);
// Convert whitespaces and underscore to dash
$string = preg_replace("/[\s_]/", "-", $string);
Geeky Bravo

Odpowiedzi podobne do “PHP Zastąp miejsce na deskę rozdzielczą”

Pytania podobne do “PHP Zastąp miejsce na deskę rozdzielczą”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu