Skip to main content
Active reading. [ <http://en.wikipedia.org/wiki/PHP>].
Source Link
Peter Mortensen
  • 31.6k
  • 22
  • 109
  • 133

You're looking for a call that's similar to the commandline call

svn info URL

It seems that this is possible using the pysvn library, and there's a recipe that should help you get started. I'm not sure if there's something similar for phpPHP.

If you need to resort to calling the svnSVN binary yourself, make sure to use the --xml--xml parameter to get the result as xml, thatXML. That should be easier to parse than the commandline output.

You're looking for a call that's similar to the commandline call

svn info URL

It seems that this is possible using the pysvn library, there's a recipe that should help you get started. I'm not sure if there's something similar for php.

If you need to resort to calling the svn binary yourself, make sure to use the --xml parameter to get the result as xml, that should be easier to parse than the commandline output

You're looking for a call that's similar to the commandline call

svn info URL

It seems that this is possible using the pysvn library, and there's a recipe that should help you get started. I'm not sure if there's something similar for PHP.

If you need to resort to calling the SVN binary yourself, make sure to use the --xml parameter to get the result as XML. That should be easier to parse than the commandline output.

Source Link
Sander Rijken
  • 21.6k
  • 3
  • 64
  • 86

You're looking for a call that's similar to the commandline call

svn info URL

It seems that this is possible using the pysvn library, there's a recipe that should help you get started. I'm not sure if there's something similar for php.

If you need to resort to calling the svn binary yourself, make sure to use the --xml parameter to get the result as xml, that should be easier to parse than the commandline output