If you've made several changes to your local copy of phpdoc and would like to see what files have been modified, you can ask svn what the current status of the file or files is.
To see the status of all files in the current directory, issue the following command:
$ svn status
This will generate a list of modified files, new files that aren't checked into SVN, and more. Getting the status of individual files (and directories) is just as simple:
$ svn status file1 file2
Example #1 svn status example