How to print \ in php. Only \ with out using . or *.
Answers were Sorted based on User's Feedback
Answer / vijay
The answer is simple.
<?php print "\\"; ?>
I hope this coud help u.
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / swarnadip
Previous answer is correct but u can also use echo in place
of print
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / naresh
$something = "oh something";
echo "My answer is \\\"is"\\\ $something" <br/>;
output:"My answer \"is" \ oh something
when we declare single \ it escaped but when we double the \
it will display the single \.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gsrlingam
write like this
<?php print_r($varaible);?>
<?php echo $varaible;?>
<?php echo "String";?>
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ram
i think the above answer is not correct.
i think this will work.
<?php print "\\";
| Is This Answer Correct ? | 0 Yes | 2 No |
how much can a 1yr experienced php programmer earn in india?
9 Answers TCS, Tops Technologies,
What are the new features available in php 7?
Tell me what sized websites have you worked on in the past?
Name some of the constants in php and their purpose.
How does the identity operator ===compare two values in PHP?
How is session data stored?
What is ci framework in php?
Name the Functions in IMAP, POP3 AND LDAP?
What is session in php why it is use?
Which is a perfect example of runtime polymorphism?
Is not null mysql?
Tell me what is the use of "ksort" in php?