Fork me on GitHub

php 执行命令

1
2
3
4
5
6
exec ( string $command [, array &$output [, int &$return_var ]] ) : string
例:
exec('curl --user api:TinyPNG密钥 --data-binary @xxx.png照片绝对路径 -i https://api.tinify.com/shrink', $res);
$res = $res[count($res) - 1];
$res = json_decode($res, true);
$this->outFormat(0, $res['output']);
-------------感谢您的阅读 有问题请留言(或mailto:frostbelt@sina.cn)-------------