I'm trying to automate the process with my ftp user creation, however I need to be able to set the quota of a user via PHP, in ssh I would use edquota username however if there a way to do this via PHP with SSH2 or ftp?
1 に答える
1
You can use the Exec command http://php.net/manual/en/function.exec.php
exec('edquota username');
于 2012-05-02T07:54:04.693 に答える