Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

transform text to lowercase and replace space with dash php

$str = 'hello have a good day everyone';
echo str_replace(' ', '-', strtolower($str));
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #transform #text #lowercase #replace #space #dash #php
ADD COMMENT
Topic
Name
9+5 =