Computer >> Computer tutorials >  >> Programming >> PHP

PHP How to add backslash inside array of strings?


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)) . "\n";
?>
</body>
</html>

Output

This will produce the following output

"[\"ADD\",\"REMOVE\",\"SELECT\",\"MODIFY\"]"