I don't believe php uses any type of Perl quoting conventions such as qq. If you do need to use quotes within quotes you can use the '\' to remove the quotes value, such as:

$text = "The following text is \"quoted\"";

Or if that doesn't work (like adding the return value of a function to a string) you can use the '.' operator to concat your results:

$test = "The current directory is :". getcwd();

I hope this helps you out. Good Luck :-)

kevin1 wrote:

Is there a qq operator like Perl's in PHP?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


--
209 Media <http://www.209media.com>
Ron Wills <[EMAIL PROTECTED]>
Programmer
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to