我有一个像这样的变量: -
$item = 'gl.sck?ejk/shkjfe$%8wehjdm$3uiqo9iy723';
我只想要前20个字符。如何让所有符号完好无损 像这样的东西
$itme_after_limit_20 = 'gl.sck?ejk/shkjfe$%8';
包含符号的20个字符。 提前谢谢..
答案 0 :(得分:1)
使用substr()
,如下所示: -
<?php
$item ='gl.sck?ejk/shkjfe$%8wehjdm$3uiqo9iy723';
echo $itme_after_limit_20 = substr($item,0,20);//'gl.sck?ejk/shkjfe$%8';
输出: - https://eval.in/758693
答案 1 :(得分:0)
你可以试试..
-DgroupId= com.company.module //Wrong , Watch the space after the equal to
-DgroupId=com.company.module //Right