You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
richdocuments/lib/request.php

27 lines
485 B
PHP

<?php
namespace OCA\Office;
class Request {
protected $data = array();
public function __construct(){
$this->data = json_decode(file_get_contents('php://input'), true);
}
public function getParam($name){
$path = explode('/', $name);
reset($path);
$index = current($path);
$param = $this->data;
do {
if (!array_key_exists($index, $param)){
return null;
}
$param = $param[$index];
} while (($index = next($path)) !== false);
return $param;
}
}