I know I can do this to get a list of directories inside /vz/root:
find /vz/root/ -type d -maxdepth 1 -exec echo {} \;
But how can I edit this to only list the directories that do not contain a subdirectory called "php-5.3.3"? So if there's 3 directories /vz/root/101, /vz/root/102, and /vz/root/103, and two of them contain php-5.3.3 subdirectory, it would only echo the path of the one that doesn't have it.