gpt4 book ai didi

php - 使用 Jquery 将字符串更改为某种固定格式

转载 作者:行者123 更新时间:2023-12-01 08:40:05 25 4
gpt4 key购买 nike

假设我有字符串

<td> <?=$row['password']?> </td>

返回结果

<td>123</td>

现在我想将其隐藏为

<td>***</td>

对于解决方案,我尝试将其放入输入类型密码中。所以我想问是否有任何使用JQUERY的解决方案

我不想隐藏或显示我只是想更改它以修复格式。例如,如果我使用 $ 而不是 *,那么所有字符串都会更改为 $。

我还寻找str_replace()。但这没有意义。

最佳答案

不建议使用 jQuery 来屏蔽您的密码。这是使用 PHP

的方法
$password = "1234567890";
$password = str_repeat("*", strlen($password));

echo '<td>' . $password . '</td>';

文档:http://php.net/manual/en/function.str-repeat.php

关于php - 使用 Jquery 将字符串更改为某种固定格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48395591/

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