本文整理汇总了PHP中Services_JSON类的典型用法代码示例。如果您正苦于以下问题:PHP Services_JSON类的具体用法?PHP Services_JSON怎么用?PHP Services_JSON使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Services_JSON类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getResource
public function getResource()
{
$resources = JRequest::getVar('resource');
if (!is_array($resources)) {
header('Content-type: text/x-json; UTF-8');
echo '[]';
exit;
}
foreach ($resources as &$resource) {
$resource = (object) $resource;
switch ($resource->type) {
case 'language':
$resource->content = JText::_(strtoupper($resource->name));
break;
case 'view':
$template = Komento::getTheme();
$out = $template->fetch($resource->name . '.ejs');
if ($out !== false) {
$resource->content = $out;
}
break;
}
}
Komento::getClass('json', 'Services_JSON');
header('Content-type: text/x-json; UTF-8');
$json = new Services_JSON();
echo $json->encode($resources);
exit;
}
示例2: output
private function output($response)
{
include_once EBLOG_CLASSES . DIRECTORY_SEPARATOR . 'json.php';
$json = new Services_JSON();
echo $json->encode($response);
exit;
}
示例3: genJSON
function genJSON()
{
$this->fillMyArrays();
$this->oJSONObject = new BxDolPFMAreaJSONObj($this);
$oJSONConv = new Services_JSON();
return $oJSONConv->encode($this->oJSONObject);
}
示例4: decode
/**
* Transforma el texto enviado en formato JSON a un objeto PHP
*
* @param string $html texto JSON a decodear
* @return object objeto PHP
*/
public function decode($html)
{
// include_once("classes/JSON.class.php");
$json = new Services_JSON();
$data = stripslashes($html);
return $json->decode($data);
}
示例5: get_json
function get_json($data, $status = 'ok')
{
// Include a status value with the response
if (is_array($data)) {
$data = array_merge(array('status' => $status), $data);
} else {
if (is_object($data)) {
$data = get_object_vars($data);
$data = array_merge(array('status' => $status), $data);
}
}
$data = apply_filters('json_api_encode', $data);
if (function_exists('json_encode')) {
// Use the built-in json_encode function if it's available
return json_encode($data);
} else {
// Use PEAR's Services_JSON encoder otherwise
if (!class_exists('Services_JSON')) {
$dir = gb_json_api_dir();
require_once "{$dir}/library/JSON.php";
}
$json = new Services_JSON();
return $json->encode($data);
}
}
示例6: create_form_token_json
function create_form_token_json($form_id)
{
global $class_path;
include_once $class_path . 'lgpl/Services_JSON.class.php';
$json_encoder = new Services_JSON();
return $json_encoder->encode(create_form_token_array($form_id));
}
示例7: send
/**
* Send the HTTP request via cURL
*
* @return SiftResponse
*/
public function send()
{
$json = new Services_JSON();
$propertiesString = http_build_query($this->properties);
$curlUrl = $this->url;
if ($this->method == self::GET) {
$curlUrl .= '?' . $propertiesString;
}
// Mock the request if self::$mock exists
if (self::$mock) {
if (self::$mock['url'] == $curlUrl && self::$mock['method'] == $this->method) {
return self::$mock['response'];
}
return null;
}
// Open and configure curl connection
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $curlUrl);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
if ($this->method == self::POST) {
$jsonString = $json->encodeUnsafe($this->properties);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonString);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length: ' . strlen($jsonString), 'User-Agent: SiftScience/v' . SiftClient::API_VERSION . ' sift-php/' . SiftClient::VERSION));
}
// Send the request using curl and parse result
$result = curl_exec($ch);
$httpStatusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// Close the curl connection
curl_close($ch);
return new SiftResponse($result, $httpStatusCode, $this);
}
示例8: getFiltersFor
function getFiltersFor($msg, $id = null)
{
$json = new Services_JSON();
if ($id !== null) {
$this->id = $id;
}
$this->find();
$res = array();
while ($this->fetch()) {
$fltrs = $json->decode($this->filter);
// Serach for "from" and "subject"
foreach ($fltrs as $f) {
$from = !isset($f->from) || trim($f->from) == "";
$subj = !isset($f->subject) || trim($f->subject) == "";
if ($from && $subj) {
continue;
}
if (!$from) {
$from = strpos($msg->from, $f->from) !== false;
}
if (!$subj) {
$subj = strpos($msg->subject, $f->subject) !== false;
}
if ($from && $subj) {
$res[] = $this->toArray();
break;
}
}
}
return $res;
}
示例9: run
public function run()
{
require_once _lms_ . '/lib/lib.kbres.php';
$kbres = new KbRes();
$data = false;
if ($this->res_id > 0) {
$data = $kbres->getResource($this->res_id, true, true);
} else {
if (!empty($this->r_item_id) && !empty($this->r_type)) {
$data = $kbres->getResourceFromItem($this->r_item_id, $this->r_type, $this->r_env, true, true);
}
}
if ($data == false) {
$data = array('res_id' => 0, 'r_name' => '', 'original_name' => '', 'r_desc' => '', 'r_item_id' => $this->r_item_id, 'r_type' => $this->r_type, 'r_env' => $this->r_env, 'r_env_parent_id' => $this->r_env_parent_id, 'r_param' => $this->r_param, 'r_alt_desc' => '', 'r_lang' => !empty($this->language) ? $this->language : getLanguage(), 'force_visible' => 0, 'is_mobile' => 0, 'folders' => array(), 'tags' => array());
}
if (!empty($this->original_name)) {
$data['original_name'] = $this->original_name;
}
$c_folders = array_keys($data['folders']);
unset($data['folders']);
$c_tags = $data['tags'];
unset($data['tags']);
$json = new Services_JSON();
$this->render('kbcategorize', array('selected_node' => $this->_getSelectedNode(), 'back_url' => $this->back_url, 'form_url' => $this->form_url, 'form_extra_hidden' => $this->form_extra_hidden, 'data' => $data, 'c_folders' => $c_folders, 'c_tags_json' => $json->encode(array_values($c_tags)), 'all_tags_json' => $json->encode(array_values($kbres->getAllTags()))));
}
示例10: HTTP_GET
function HTTP_GET()
{
$json = new paloSantoJSON();
$pCore_calendar = new core_Calendar();
$fields = isset($_GET["fields"]) ? $_GET["fields"] : NULL;
if (is_null($fields)) {
header("HTTP/1.1 400 Bad Request");
$error = "You need to specify by GET the parameter \"fields\"";
$json->set_status("ERROR");
$json->set_error($error);
return $json->createJSON();
}
$result = $pCore_calendar->getHash($fields);
if ($result === FALSE) {
$error = $pCore_calendar->getError();
if ($error["fc"] == "DBERROR") {
header("HTTP/1.1 500 Internal Server Error");
} else {
header("HTTP/1.1 400 Bad Request");
}
$json->set_status("ERROR");
$json->set_error($error);
return $json->createJSON();
} else {
$json = new Services_JSON();
return $json->encode($result);
}
}
示例11: getData
/**
* It is specific implementation of ancestor method getData()
*
* @return <String> JSON represantation of given data.
*/
public function getData()
{
$attributes = $this->solveData();
$this->jsonObject['attributes'] = $attributes;
$interestMeasure = $this->solveInterestMeasures();
$this->jsonObject['interestMeasures'] = $interestMeasure;
$this->solveNumberBBA();
$this->solveDepthNesting();
$this->solveMoreRules();
$interestMeasure = $this->domFL->getElementsByTagName("InterestMeasures")->item(0);
$bba = $this->domFL->getElementsByTagName("BasicBooleanAttribute")->item(0);
$threshold = "optional";
$coefficient = "optional";
if ($interestMeasure->getAttribute("threshold") != "") {
$threshold = $interestMeasure->getAttribute("threshold");
}
if ($bba->getAttribute("coefficient") != "") {
$coefficient = $bba->getAttribute("coefficient");
}
$this->jsonObject['imThreshold'] = $threshold;
$this->jsonObject['attrCoef'] = $coefficient;
$posCoef = $this->solvePosCoef();
$this->jsonObject['possibleCoef'] = $posCoef;
if ($this->domER != null) {
$this->solveExistingRules();
} else {
$this->jsonObject['rules'] = 0;
}
$this->jsonObject['lang'] = $this->lang;
$json = new Services_JSON();
return $json->encode($this->jsonObject);
}
示例12: getUserData
function getUserData($id)
{
$user = new AMP_User_Profile(AMP_registry::getDbcon(), $id);
if ($user) {
$data = array();
$data['Email'] = $user->getData('Email');
$data['First_Name'] = $user->getData('First_Name');
$data['Last_Name'] = $user->getData('Last_Name');
$data['Phone'] = $user->getData('Phone');
$data['Company'] = $user->getData('Company');
$data['City'] = $user->getData('City');
$data['Country'] = $user->getData('Country');
$data['custom1'] = $user->getData('custom1');
$data['custom3'] = $user->getData('custom3');
$data['custom4'] = $user->getData('custom4');
$message = array();
$message['type'] = 'good';
$message['text'] = 'Success';
$json = new Services_JSON();
$json_data = array('data' => $data, 'message' => $message, 'success' => true);
$output = $json->encode($json_data);
return $output;
} else {
$message = array();
$message['type'] = 'bad';
$message['text'] = 'Unrecognized User ID';
$json_data = array('message' => $message);
$output = $json->encode($json_data);
return $output;
}
}
示例13: smarty_function_json
/**
* Smarty {json} plugin
*
* Type: function
* Name: json
* Purpose: fetch json file and assign result as a template variable (array)
* @param url (url to fetch)
* @param assign (element to assign to)
* @return array|null if the assign parameter is passed, Smarty assigns the
* result to a template variable
*/
function smarty_function_json($params, &$smarty)
{
if (empty($params['url'])) {
$smarty->_trigger_fatal_error("[json] parameter 'url' cannot be empty");
return;
}
$content = array();
$data = file_get_contents($params['url']);
if (empty($data)) {
return false;
}
if (!is_callable('json_decode')) {
require_once 'JSON.php';
$json = new Services_JSON();
$content = $json->decode(trim(file_get_contents($params['url'])));
} else {
$content = json_decode(trim(file_get_contents($params['url'])));
}
if ($params['debug'] === true) {
echo "<pre>";
print_r($content);
echo "</pre>";
}
if (!empty($params['assign'])) {
$smarty->assign($params['assign'], $content);
} else {
return $content;
}
}
示例14: loginTeacher
static function loginTeacher($class, $pass, $ignoreNonexistent = false)
{
$json = new Services_JSON();
if (!$class) {
return "クラス名を入力してください。";
}
if (!$pass) {
return "パスワードを入力してください。";
}
if (!file_exists("fs/home/{$class}") && !$ignoreNonexistent) {
return "存在しないクラスIDが入力されています。";
}
if (preg_match('/^[a-zA-Z0-9\\-_]+$/', $pass)) {
$fp = fopen("user/list.txt", "r");
while ($line = fgets($fp)) {
$classlist = $json->decode($line);
if ($classlist["classid"] == $class) {
break;
}
}
fclose($fp);
if (isset($classlist) && $classlist["pass"] == $pass) {
// Success
MySession::set("class", $class);
MySession::set("user", self::TEACHER);
setcookie("class", $class, time() + 60 * 60 * 24 * 30);
return true;
} else {
return "クラスIDかパスワードが間違っています。";
}
} else {
return "パスワードは半角英数とハイフン、アンダースコアだけが使えます。";
}
}
示例15: __construct
public function __construct($result, $httpStatusCode, $request)
{
if (function_exists('json_decode')) {
$this->body = json_decode($result, true);
} else {
require_once dirname(__FILE__) . '/Services_JSON-1.0.3/JSON.php';
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
$this->body = $json->decode($result);
}
$this->httpStatusCode = $httpStatusCode;
// If there is an error we want to build out an error string.
if ($this->httpStatusCode !== 200) {
$this->error = $this->body['error'];
$this->errorMessage = $this->error . ': ' . $this->body['description'];
if (array_key_exists('issues', $this->body)) {
$this->errorIssues = $this->body['issues'];
foreach ($this->errorIssues as &$issue) {
$this->errorMessage .= array_search($issue, $this->errorIssues) . ': ' . $issue;
}
unset($issue);
}
}
if (array_key_exists('request', $this->body)) {
$this->request = $this->body['request'];
} else {
$this->request = null;
}
$this->request = $request;
$this->result = $result;
}