gpt4 book ai didi

javascript - 输入值/仅启用最后 10 个字符

转载 作者:行者123 更新时间:2023-12-02 15:14:12 24 4
gpt4 key购买 nike

在输入表单中,提交表单时可以仅使用最后 10 个字符吗?

例如,此链接:http://linkwebiste.com/test?x=123456789012 将是 input 框(如搜索)上的值,我将提交,但我只需要 123456789012

我希望输入表单的结果位于另一个页面中,例如<form action="page2.php" method="post">

例如有 2 个图像(在 Photoshop 中,由我创建):

enter image description here

最佳答案

在第二个参数上使用 substr() 和 -Ve 数字。

$postedString = "http://linkwebiste.com/test?x=1234567890"
$lastString = substr($postedString, -10);
echo $lastString; //will result "1234567890"

关于javascript - 输入值/仅启用最后 10 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34593286/

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