
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add Backslash Inside Array of Strings in PHP
To add backslash inside array of strings, use json_encode().
Let’s say the following is our array −
$value = [ "ADD", "REMOVE","SELECT","MODIFY" ];
We want the output with backslash inside array of strings i.e −
"[\"ADD\",\"REMOVE\",\"SELECT\",\"MODIFY\"]"
Example
The PHP code is as follows −
<!DOCTYPE html> <html> <body> <?php $value = [ "ADD", "REMOVE","SELECT","MODIFY" ]; echo json_encode(json_encode($value)) . "
"; ?> </body> </html>
Output
This will produce the following output
"[\"ADD\",\"REMOVE\",\"SELECT\",\"MODIFY\"]"
Advertisements