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.
我有这样的代码..
$dir['subdir'];
它返回这样的值
/2012/12/14
现在我想删除第一个斜杠..
我的意思是我需要这样
2012/12/14
谁能帮我?谢谢
您可以将该ltrim功能用作:
ltrim
$result = ltrim( ltrim($dir['subdir']), '/');
内部 ltrim 删除前导空格,外部 ltrim 根据/需要删除。
/