“JSON_ENCODE Escape” Kod odpowiedzi

JSON_ENCODE Escape

<?php
/*
 * Escaping the reverse-solidus character ("/", slash) is optional in JSON.
 *
 * This can be controlled with the JSON_UNESCAPED_SLASHES flag constant in PHP.
 *
 * @link http://stackoverflow.com/a/10210433/367456
 */    
$url = 'http://www.example.com/';

echo json_encode($url), "\n";

echo json_encode($url, JSON_UNESCAPED_SLASHES), "\n";
Pro___coder$

JSON_ENCODE Escape \

<?php
/*
 * Escaping the reverse-solidus character ("/", slash) is optional in JSON.
 *
 * This can be controlled with the JSON_UNESCAPED_SLASHES flag constant in PHP.
 *
 * @link http://stackoverflow.com/a/10210433/367456
 */    

$url = 'http://www.example.com/';

echo json_encode($url), "\n";

echo json_encode($url, JSON_UNESCAPED_SLASHES), "\n";
Nutty Newt

Odpowiedzi podobne do “JSON_ENCODE Escape”

Pytania podobne do “JSON_ENCODE Escape”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu