View Single Post
Old 07-02-2008, 01:29 AM   #1 (permalink)
delayedinsanity
The Gregarious
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Cana'derr
Posts: 653
Thanks: 24
delayedinsanity is on a distinguished road
Default Anybody familiar with Zend Studio?

I'm a huge fan of Dreamweaver, so I'm not sure if this is going to work out or not, but I decided to give Zend Studio a try, and I'm curious about two things in particular in the last five minutes of using it.

First thing actually has to do with the studio itself. I have phpMyAdmin and a test directory in my web root, and I was wondering if there was a way to cloak those directories from Zend. I want to be able to access them, but I don't want the classes et al showing up in my project outline.

Second thing is a regular expression question, but related to Zend's error/warning reporting. It's spitting out a TONNE of warnings that I have bad escape sequences which I think is a little rash. For example:

PHP Code:
$regex .= "(\?[a-z+&_.-][a-z0-9;:@\/&%=+\$_.-]*)?"// GET Query 
Part of my url validating regular expression, it's telling me that \? is a bad escape sequence and that I should be using \\?. Sure, if I wanted it to match as few backslashes as possible, that makes sense. So what's up, why is Zend freaking out about this?

Thanks for any help or insight on the Zend Studio.
-m
delayedinsanity is offline  
Reply With Quote