. // Check if request is for JSONP if (isset ($_GET['jsonp'])) { // If so, setup HashOver for JavaScript require ('javascript-setup.php'); } else { // If not, setup HashOver for JSON require ('json-setup.php'); } try { // Instantiate HashOver class $hashover = new \HashOver ('json'); $hashover->setup->setPageURL ('request'); $hashover->setup->setPageTitle ('request'); $hashover->setup->setThreadName ('request'); $hashover->setup->collapsesComments = false; $hashover->initiate (); // Setup where to start reading comments $start = $hashover->setup->getRequest ('start', 0); // Check for comments if ($hashover->thread->totalCount > 1) { // Parse primary comments // TODO: Use starting point $hashover->parsePrimary (0); // Display as JSON data $data = $hashover->comments; // Generate statistics $hashover->statistics->executionEnd (); // HashOver statistics $data['statistics'] = array ( 'execution-time' => $hashover->statistics->executionTime, 'script-memory' => $hashover->statistics->scriptMemory, 'system-memory' => $hashover->statistics->systemMemory ); } else { // Return no comments message $data = array ('No comments.'); } // Return JSON or JSONP function call echo $hashover->misc->jsonData ($data); } catch (\Exception $error) { $misc = new Misc ('json'); $message = $error->getMessage (); $misc->displayError ($message); }