<?php
$varray = $database->getProfileVillages($session->uid);
for($i=0;$i<=count($varray)-1;$i++) {
echo "<tr><th>Köy ismi</th><td><input tabindex=\"6\" type=\"text\" name=\"dname$i\" value=\"".$varray[$i]['name']."\" maxlength=\"20\" class=\"text\"></td></tr>";
}
?>
<tr><td colspan="2" class="desc2"><textarea tabindex="8" name="be2"><?php echo $session->userinfo['desc1']; ?></textarea></td></tr>
我希望如果用户输入“”(空格),系统会将其更改为 - (hiphen)。
示例
(“灵魂人”成为“灵魂人”)&amp; (“”成为“ - ”)。
请将代码替换为我的代码吗? 提前致谢
答案 0 :(得分:3)
str_replace()
在提供echo
时,请提供:
echo str_replace(" ", "-", $str);
其中$str
是字符串,您要在其中将空格替换为破折号。
$varray[$i]['name']
str_replace(" ", "-", $varray[$i]['name']);
echo "<tr><th>Köy ismi</th><td><input tabindex=\"6\" type=\"text\" name=\"dname$i\" value=\"", str_replace(" ", "-", $varray[$i]['name']), "\" maxlength=\"20\" class=\"text\"></td></tr>";