我正在运行shell_exec
(git log
在此示例中)并且我的响应在字符串的开头和结尾有很多空格。
7baca58 test 3
847ad88 test 3
bcd7340 Nother test
21a5f17 Testing git releases
8faa1c0 Add previously ignored files in attempt to push to server with git
我已经尝试过$string = preg_replace('/\s+/', ' ', $string);
,但这也删除了换行符。正常trim
似乎也没有帮助。
我怎样才能删除前导和尾随空格?