Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'json'

2075249 - JSON: linux json arch archlinux biteme
  1. :) pacman -Ss json
  2. extra/json-glib 0.12.4-1 [0.08 MB] [installed]
  3.     JSON library built on GLib
  4. extra/qjson 0.7.1-1 [0.05 MB]
  5.     A qt-based library that maps JSON data to QVariant objects
  6. community/couchdb 1.0.2-3 [0.54 MB] [installed]
  7.     A document-oriented database that can be queried and indexed in a MapReduce
  8.     fashion using JSON
  9.  
2075233 - JSON: linux json arch archlinux biteme
  1. :) pacman -Ss json
  2. extra/json-glib 0.12.4-1 [0.08 MB] [installed]
  3.     JSON library built on GLib
  4. extra/qjson 0.7.1-1 [0.05 MB]
  5.     A qt-based library that maps JSON data to QVariant objects
  6. community/couchdb 1.0.2-3 [0.54 MB] [installed]
  7.     A document-oriented database that can be queried and indexed in a MapReduce
  8.     fashion using JSON
  9.  
2075231 - JSON: linux json arch archlinux biteme
  1. :) pacman -Ss json
  2. extra/json-glib 0.12.4-1 [0.08 MB] [installed]
  3.     JSON library built on GLib
  4. extra/qjson 0.7.1-1 [0.05 MB]
  5.     A qt-based library that maps JSON data to QVariant objects
  6. community/couchdb 1.0.2-3 [0.54 MB] [installed]
  7.     A document-oriented database that can be queried and indexed in a MapReduce
  8.     fashion using JSON
  9.  
2073801 - json sample: javascript json
  1. // ejemplo de notacion json
  2. var punto2d = {
  3.         x: 1
  4.         , y: 1
  5. }
1994111 - php json encode with javascript : php javascript json function encode
  1. // PHP 4 >= 4.0.1, PHP 5
  2. public static function json_encode($array)
  3. {
  4.     return preg_replace_callback(
  5.         '/(?<=:)"function\((?:(?!}").)*}"/',
  6.         create_function('$string', "return str_replace('\\\\\"','\\\"',substr(\$string[0],1,-1));"),
  7.         json_encode($array)
  8.     );
  9.  
1488970 - Web Service Encoded for PHP: php xml json service web
  1. <?php
  2. // PHP Web Service Encoder
  3. //
  4. // Takes arbitrary data and encodes it to be returned (usually as a web service)
  5. //
  6. // Data Formats Supported:
  7. // - XML
  8. // - JSON
  9.  
1488968 - Web Service Encoded for PHP: php xml json service web
  1. <?php
  2. // PHP Web Service Encoder
  3. //
  4. // Takes arbitrary data and encodes it to be returned (usually as a web service)
  5. //
  6. // Data Formats Supported:
  7. // - XML
  8. // - JSON
  9.  
595487 - json sample: javascript json
  1. // ejemplo de notacion json
  2. var punto2d = {
  3.         x: 1
  4.         , y: 1
  5. }