I want to give output of svnadmin verify command from shell_exec()

var_dump(shell_exec('/usr/bin/svnadmin verify /Users/osman/Desktop/SVN/name'));

But it returns 'null'. How can i access the response of svnadmin verify ?

Im working with PHP 5.3.2 on Mac OS X Snow Leopard

link|improve this question

50% accept rate
feedback

1 Answer

We had a similar issue and were able to get results back using http://www.php.net/manual/en/function.passthru.php

link|improve this answer
same result :( returns null when call with passthru – Osman Üngür Jun 8 '10 at 15:15
Make sure you give it a return arg. The passthru function doesn't return anything. passthru ('blah blah', $return); var_dump($return); – threendib Jun 8 '10 at 17:37
i'd used buffering from commandline.. It solved. – Osman Üngür Jul 14 '10 at 12:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.