how to run phonegap cli using php scripts?
i can manually run phonegap with windows cmd and everything works great but when i call ex:'phonegap build android' in php exec, nothing happens. no error no catch block, nothing.
here is my code:
test.php
<?php
$out = array();
try {
$create_command = 'phonegap create test';
$build_command = 'phonegap build android';
exec($build_command,$out);
foreach($out as $line) echo $line.'<br>';
}
catch(Exception $ex) {
echo $ex->getMessage();
}
?>
by the way i registered php in environments then ran 'php %path_to_file%/test.php' in cmd and it worked.