[ create a new paste ] login | about

Link: http://codepad.org/EpUQzjrx    [ raw code | output | fork | 1 comment ]

PHP, pasted on Nov 23:
1
2
3
4
5
6
7
8
<?php

$custom_header = '{}';
$custom_header = htmlentities($custom_header);
$custom_header = html_entity_decode($custom_header);

var_dump($custom_header);
var_dump(bin2hex($custom_header));


Output:
1
2
string(2) "{}"
string(4) "7b7d"


Create a new paste based on this one


Comments:
posted by pritombm on Nov 23
$custom_header = '&#123; &#125;';
My custom header is like this.
Want to '{}'
reply