Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

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

share|improve this answer
same result :( returns null when call with passthru – Osman Ung. 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); – Nathan Hess Jun 8 '10 at 17:37
i'd used buffering from commandline.. It solved. – Osman Ung. Jul 14 '10 at 12:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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