gpt4 book ai didi

html - 返回空白作为下划线

转载 作者:行者123 更新时间:2023-11-29 08:40:38 26 4
gpt4 key购买 nike

我需要为从 mysql 表返回的该地址的最后部分中的任何空格添加下划线。问题是我认为我不能只修改模型中的 SQL,因为我需要在 value="<?php echo $row['brand'];?>" 中返回带空格的原始值。部分也是如此。我刚刚开始学习 php/html 所以不确定这是否可行。这是我需要修改的 View 中的代码部分。

<?php foreach($rb_data as $row){ ?>

<input type="button" class="btn btn-success" value="<?php echo $row['brand'];?>" onClick="document.location.href = ('http://localhost/CodeIgniter_2.1.2/index.php/controller/community/<?php echo $row['brand'];?> ' );">

<?php } ?>

例如,当我单击“我们的家庭”按钮时,我需要它返回 CodeIgniter_2.1.2/index.php/controller/community/our_family最好全部小写,但不是必需的。如有任何帮助,我们将不胜感激。

最佳答案

<?php foreach($rb_data as $row){ ?>

<input type="button" class="btn btn-success" value="<?php echo $row['brand'];?>" onClick="document.location.href = ('http://localhost/CodeIgniter_2.1.2/index.php/controller/community/<?php echo str_replace(' ','_',strtolower($row['brand']));?> ' );">

<?php } ?>

如果你只需要替换空格,你可以这样做。

关于html - 返回空白作为下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13899158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com