以下为PHP JSON加密函数的具体应用:
- function php_json_encode($arr)
- {
-
$json_str = "";
- if(is_array($arr))
- {
-
$pure_array = true;
-
$array_length = count($arr);
-
for($i=0;$i$array_length;$i++)
- {
- if(! isset($arr[$i]))
- {
-
$pure_array = false;
- break;
- }
- }
- if($pure_array)
- {
-
$json_str ="[";
-
$temp = array();
-
for($i=0;$i$array_length;$i++)
- {
- $temp[] = sprintf("%s", php_json_encode($arr[$i]));
- }
-
$json_str .= implode(",",$temp);
-
$json_str .="]";
- }
- else
- {
-
$json_str ="{";
-
$temp = array();
-
foreach($arr as $key => $value)
- {
- $temp[] = sprintf(""%s":%s", $key, php_json_encode($value));
- }
-
$json_str .= implode(",",$temp);
-
$json_str .="}";
- }
- }
- else
- {
- if(is_string($arr))
- {
-
$json_str = """. json_encode_string($arr) . """;
- }
- else if(is_numeric($arr))
- {
-
$json_str = $arr;
- }
- else
- {
-
$json_str = """. json_encode_string($arr) . """;
- }
- }
- return $json_str;
- }
希望通过上面这段代码的演示,大家能够充分掌握PHP JSON加密函数的用法,帮助自己完善代码编程。
http://www.bkjia.com/PHPjc/446100.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/446100.htmlTechArticle以下为PHP JSON加密函数的具体应用: functionphp_json_encode($arr) { $ json_str = ; if(is_array($arr)) { $ pure_array = true ; $ array_length = count ($arr); for($ i = 0...
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn