Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to use escaping function for JavaScript JSON (JavaScript Object Notation) in PHP

4 Answers

0 votes
$arr = array('<tag1>', "<tag2>", '"menu"', "'title'", '&nbsp;');
$encoded = json_encode($arr);
echo $encoded;  

/*
run:

["","","\"menu\"","'title'"," "]

*/

 



answered Jun 30, 2015 by avibootz
0 votes
$arr = array('+1234', '-1234', '1.3e5', '0.001');
$encoded = json_encode($arr);
echo $encoded;  

/*
run:

["+1234","-1234","1.3e5","0.001"]

*/

 



answered Jun 30, 2015 by avibootz
0 votes
$arr = array('+1234', '-1234', '1.3e5', '0.001');
$encoded = json_encode($arr, JSON_NUMERIC_CHECK);
echo $encoded;  

/*
run:

[1234,-1234,130000,0.001]

*/

 



answered Jun 30, 2015 by avibootz
0 votes
$arr = array(1=>"aaa", 2=>"bb", 3=>"ccccc", 4=>"ddddddddddddddddd");
$encoded = json_encode($arr, JSON_NUMERIC_CHECK);
echo $encoded;  

/*
run:

{"1":"aaa","2":"bb","3":"ccccc","4":"ddddddddddddddddd"}

*/

 



answered Jun 30, 2015 by avibootz
...