Simple PHP Class generator
Someone on the Professional PHP Group asked the question yesterday about whether Dreamweaver has a utility to write setters and getters to your PHP classes for you. I know that ZendStudio has this feature and I am pretty sure that NetBeans has it as well.
But as I thought about this, I thought "How cool would it be to be able to take a list of PHP properties and build a class out of that list complete with your getters and setters?". That's when my inner nerd took over and I created a very simple PHP Class Generator.
It is not the most robust tool in the world, but if you are looking for a quick way to build out a class of getters and setters from a simple list of variables, this little tool might be right up your alley. I'd encourage you to play with it and see if it can help you. If it does, tell me about it in the comments.
Oh yeah, a major thank you goes out to Jason Memory of Full Throttle Web Solutions for his help and wizardry in all things regex.