Tagged Questions
The double-quotes tag has no wiki summary.
3
votes
1answer
53 views
How to escape a single quote in single quote string in Bash?
I want to display a string in Bash like this
I'm a student
Of course you can do it like this
echo "I'm a student"
But how to accomplish this while using single quote around the string ?
1
vote
2answers
235 views
Is there any practical reason to use quoted strings for json keys?
According to Crockford's json.org, a json object is made up of members, which is made up of pairs.
Every pair is made of a string and a value, with a string being defined as:
A string is a ...
0
votes
1answer
96 views
Double Quotes not matching in (Cake)PHP Regex
I have a regular expression that should be matching some string of the form: src="/blkjad.dafsdf">. It looks like this: (src|href)(\s*)?=(\s*)?(\"|\')/([^/].*?)\4.
While this works fine on one site ...
0
votes
1answer
148 views
PHP JSON String, escape Double Quotes for JS output
I'm creating a JSON string from a PHP array. I've encoded it using json_encode().
$json_array = array(
'title' => 'Example string\'s with "special" characters'
);
$json_decode = json_encode( ...
0
votes
2answers
189 views
PHP - Single quotes or double quotes around SQL query?
Is there any differences in using single quotes VS. using double quotes around a whole SQL query?
Which is better:
This approach (with single quotes):
$username = ...
0
votes
2answers
240 views
CKEditor breaking custom .NET tags by converting single quotes to double quotes
At the client's request, we just upgraded a custom CMS system for a large site from FCKEditor 2.x to CKEditor 3.5.3.
Inside an ItemTemplate I have a custom UserControl tag in which the attributes are ...
0
votes
4answers
68 views
PHP nesting quotes
The following fails:
$result = mysql_query("SELECT * FROM Tasks WHERE UserID = '$_SESSION['userID']'");
I tried the following:
$userID = $_SESSION['userID'];
$result = mysql_query("SELECT * FROM ...
-7
votes
3answers
70 views
using no quotes vs single quotes vs double quotes in $_POST value [closed]
Possible Duplicate:
Should I use php quote escapes for single quotes or use double quotes in arrays?
Is it okay to use array[key] in PHP?
what is the difference between these three $_POST ...