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

时间:2016-01-04 14:24:11

标签: javascript php jquery forms input

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

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

我希望输入表单的结果位于另一个页面中,例如123456789012

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

enter image description here

2 个答案:

答案 0 :(得分:1)

在第二个参数上使用带有-Ve编号的substr()

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

答案 1 :(得分:1)

您可以使用带有负偏移量的PHP substr()方法:

$last11 = substr($mystr, -10);

来自手册:

  

如果start为否定,则返回的字符串将从字符串末尾的start'字符开始。