| 12345678910111213 |
- <?php
- $paging = isset($this->Paginator->options['url']) ? $this->Paginator->options['url'] : null;
- $formatted = [
- 'user' => $user['User']['username'],
- 'list' => [],
- 'paging' => $paging,
- ];
- foreach ($user['Item'] as $item) {
- $formatted['list'][] = $item['name'];
- }
- echo json_encode($formatted);
|