how to trim white space array in php
$fruit = array(' apple ','banana ', ' , ', ' cranberry ');
$trimmed_array = array_map('trim', $fruit);
print_r($trimmed_array);
how to trim white space array in php
$fruit = array(' apple ','banana ', ' , ', ' cranberry ');
$trimmed_array = array_map('trim', $fruit);
print_r($trimmed_array);
php insert hyphen into spaces in string
$test = "jjfnj 948";
$test = str_replace(" ", "", $test); // strip all spaces from string
echo substr($test, 0, 3)."-".substr($test, 3); // isolate first three chars, add hyphen, and concat all characters after the first three
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us