Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在公式中发布用户的卡号。它必须在输入卡号并保存后发布。所有这些都有效,但我不希望显示所有字符 - 只显示最后四个字符。
我试过这个:
<input name="cardnumber" size="20" maxlength="16" type="text" id="cardnumber" value="<?php echo SELECT LEFT('$rows['cardnumber']', 4) ?>" />
如何解决这个问题呢?
您需要确保您已经执行了查询并将其存储在$rows变量中。
$rows
尝试;
<?php echo substr($rows['cardnumber'], -4); ?>
尝试这个:
value="<?php echo substr($rows['cardnumber'],0, 4) ?>"