Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8923027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:59:54+00:00 2026-06-15T06:59:54+00:00

How can I echo something at the end of the cakePHP json/xml response? I

  • 0

How can I echo something at the end of the cakePHP json/xml response?

I need this in order to add JSONP support (Because i need to add the callback at the beginning and the ‘);’ at the end

The controller uses this :

public function json() {

     //...code to populate $jsonObjects

     $this->set('objetos',$jsonObjects);
     $this->set('_serialize', 'objetos');
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T06:59:56+00:00Added an answer on June 15, 2026 at 6:59 am

    Firstly, I’m assuming you have Routes set up to correctly handle JSON/XML responses

    In your routes file:

    Router::parseExtensions('json');
    

    Secondly, you would need to make sure the call to your example uses the .json extension or the Accept header is application/json

    You then check for the callback in your controller

    public function json() {
    
        //...code to populate $jsonObjects
    
        // check for callback and set it
        // note: you should do Sanitize::clean() or something like that to
        // prevent code injection
        if ($this->request->params['callback']) {
            $this->set('callback', $this->request->params['callback']);
        }
    
        $this->set('objetos',$jsonObjects);
        $this->set('_serialize', 'objetos');
    }
    

    in your view file (ex: View/Users/json/index.ctp) you should have something like this:

    if (isset($callback)) {
        echo $callback . '('.json_encode($objetos).')';
    } else {
        echo json_encode($objetos);
    }
    

    I use something similar but didn’t test the exact example above so you may need to clean it up. Also make sure you clean up the callback var so you aren’t leaving a security hole by outputting exactly what is in the query string parameter.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Order Page: On this page, customers can choose to add business card orders with
Can i do like this: <a href=# id=thelink onclick=window.parent.OpenVote(<? echo $_GET['id']; ?>, '<? echo
echo date(W,strtotime('2010-01-01')); This outputs 53. I would expect it to output 1. Can anyone
I can't figure out why... This works: <?php if($_POST['test']) echo posted; ?> <form method=POST
Can we do something like \echo 'Type username to show its properties'; SELECT *
I'm building a web application where you can design something, at the end of
$str = 'BEGIN This is a quote test. \'Single\' END'; echo $str . \n;
I'm talking about the performance increase here. From all I know you can echo
How can I do: echo [-help | -h]: displays help At the moment when
how can i know version of echo command as specified in the man page

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.