Answers for "php convert space to dash"

PHP
1

php replace space with dash

<?php 
  $string = "hello php";
  $replace = str_replace(" ", "_", $string);
  echo $replace; // hello_php
?>
Posted by: Guest on June-18-2021

Code answers related to "php convert space to dash"

Browse Popular Code Answers by Language