PHP Developer Question:
Which special characters need to escape in Single-Quoted Stings?
Answer:
There are two special characters you need to escape in a single-quote string: the single quote (') and the back slash (). Here is a PHP script example of single-quoted strings:
<?php
echo 'Hello world!';
echo 'It's Friday!';
echo ' represents an operator.';
?>
This script will print:
Hello world!It's Friday! represents an operator.
Answer #2
echo 'hi how are you';
echo ' it\'s free of cost';
echo 'end of the program';
?>
This script will print
<?php
echo 'Hello world!';
echo 'It's Friday!';
echo ' represents an operator.';
?>
This script will print:
Hello world!It's Friday! represents an operator.
Answer #2
echo 'hi how are you';
echo ' it\'s free of cost';
echo 'end of the program';
?>
This script will print
Previous Question | Next Question |
How you can Run a PHP Script? | How to specify the "new line" character in Single-Quoted Strings? |