Trouble with SQL Query Using CodeIgniter - php

Answer
*$this->db->set('page_routes','pageid', $newid);*
Should have been
$this->db->update('page_routes', array('pageid' => $newid));
I am trying to create a page where, you can submit a form and it update values based on what you select, I cannot see what I am doing wrong but at some point, I think I am erring with regards to the MySQL command.
The idea is you select a page(friendly name) on the top option-select, and on the bottom you set the ID to the value of another pageID.
The effect it should be achieving is that the user can change change what content is displayed on a particular page.
Question: According to the query return, the update runs, but nothing is changed in my page_routes table
My View, the values are pulled from the database, they populate correctly.
<form class="form-horizontal" action="<?php echo site_url('/view/updatepageid'); ?>" method="post">
<fieldset>
<!-- Form Name -->
<legend>Form Name</legend>
<!-- Select Basic -->
<div class="control-group">
<label class="control-label" for="friendly_name">Page</label>
<div class="controls">
<select id="friendlyname" name="friendlyname" class="input-xlarge">
<?php foreach($pageroutes as $key): ?>
<option value="<?php echo $key['friendly_name']; ?>"><?php echo $key['friendly_name']; ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
<!-- Select Basic -->
<div class="control-group">
<label class="control-label" for="selectbasic">Change to:</label>
<div class="controls">
<select onchange="this.form.submit();" id="newid" name="newid">
<?php foreach($page_data as $key): ?>
<option value="<?php echo $key['id']; ?>"><?php echo $key['pagetitle']; ?></option>
<?php endforeach; ?>
</select>
</div>
</div>
</fieldset>
</form>
Which submits to here
function updatepageid(){
$this->load->model('view_model');
$friendlyname = $this->input->post('friendlyname');
$newid = $this->input->post('newid');
$query = $this->view_model->setpageid($friendlyname, $newid);
if($query == TRUE){
echo 'updated';
}else { echo 'failed'; }
var_dump($query);
}
and my Model view_model setpageid function
function setpageid($friendlyname, $newid){
$this->db->where('friendly_name', $friendlyname);
$query = $this->db->set('page_routes','pageid', $newid);
return $query;
}
If I var_dump($query) it returns
Object(CI_DB_mysql_driver)[14]
public 'dbdriver' => string 'mysql' (length=5)
public '_escape_char' => string '`' (length=1)
public '_like_escape_str' => string '' (length=0)
public '_like_escape_chr' => string '' (length=0)
public 'delete_hack' => boolean true
public '_count_string' => string 'SELECT COUNT(*) AS ' (length=19)
public '_random_keyword' => string ' RAND()' (length=7)
public 'use_set_names' => boolean false
public 'ar_select' =>
array (size=0)
empty
public 'ar_distinct' => boolean false
public 'ar_from' =>
array (size=0)
empty
public 'ar_join' =>
array (size=0)
empty
public 'ar_where' =>
array (size=1)
0 => string '`friendly_name` = 'aboutus'' (length=28)
public 'ar_like' =>
array (size=0)
empty
public 'ar_groupby' =>
array (size=0)
empty
public 'ar_having' =>
array (size=0)
empty
public 'ar_keys' =>
array (size=0)
empty
public 'ar_limit' => boolean false
public 'ar_offset' => boolean false
public 'ar_order' => boolean false
public 'ar_orderby' =>
array (size=0)
empty
public 'ar_set' =>
array (size=1)
'`page_routes`' => string ''pageid'' (length=8)
public 'ar_wherein' =>
array (size=0)
empty
public 'ar_aliased_tables' =>
array (size=0)
empty
public 'ar_store_array' =>
array (size=0)
empty
public 'ar_caching' => boolean false
public 'ar_cache_exists' =>
array (size=0)
empty
public 'ar_cache_select' =>
array (size=0)
empty
public 'ar_cache_from' =>
array (size=0)
empty
public 'ar_cache_join' =>
array (size=0)
empty
public 'ar_cache_where' =>
array (size=0)
empty
public 'ar_cache_like' =>
array (size=0)
empty
public 'ar_cache_groupby' =>
array (size=0)
empty
public 'ar_cache_having' =>
array (size=0)
empty
public 'ar_cache_orderby' =>
array (size=0)
empty
public 'ar_cache_set' =>
array (size=0)
empty
public 'ar_no_escape' =>
array (size=0)
empty
public 'ar_cache_no_escape' =>
array (size=0)
empty
public 'username' => string 'root' (length=4)
public 'password' => string '' (length=0)
public 'hostname' => string 'localhost' (length=9)
public 'database' => string 'cms' (length=3)
public 'dbprefix' => string '' (length=0)
public 'char_set' => string 'utf8' (length=4)
public 'dbcollat' => string 'utf8_general_ci' (length=15)
public 'autoinit' => boolean true
public 'swap_pre' => string '' (length=0)
public 'port' => string '' (length=0)
public 'pconnect' => boolean true
public 'conn_id' => resource(50, mysql link persistent)
public 'result_id' => resource(57, mysql result)
public 'db_debug' => boolean true
public 'benchmark' => float 0.00099992752075195
public 'query_count' => int 1
public 'bind_marker' => string '?' (length=1)
public 'save_queries' => boolean true
public 'queries' =>
array (size=1)
0 => string 'SELECT *
FROM (`sessions`)
WHERE `session_id` = '93072e3813e9ac20216c8cf6affc1d1b'
AND `user_agent` = 'Mozilla/5.0 (Windows NT 6.1; rv:26.0) Gecko/20100101 Firefox/26.0'' (length=171)
public 'query_times' =>
array (size=1)
0 => float 0.00099992752075195
public 'data_cache' =>
array (size=0)
empty
public 'trans_enabled' => boolean true
public 'trans_strict' => boolean true
public '_trans_depth' => int 0
public '_trans_status' => boolean true
public 'cache_on' => boolean false
public 'cachedir' => string '' (length=0)
public 'cache_autodel' => boolean false
public 'CACHE' => null
public '_protect_identifiers' => boolean true
public '_reserved_identifiers' =>
array (size=1)
0 => string '*' (length=1)
public 'stmt_id' => null
public 'curs_id' => null
public 'limit_used' => null
public 'stricton' => boolean false
If I have missed anything relevant to helping trouble shoot, please let me know, Thank you for your time, I believe it something simple I am missing, as I am self taught and my understanding isn't thorough as I'd like it to be.

Change your function to this:
function setpageid($friendlyname, $newid)
{
$this->db->where('friendly_name', $friendlyname);
$this->db->update('page_routes', array('pageid' => $newid));
return $this->db->affected_rows()>0 ? TRUE : FALSE;
}
This will update the page_routes table, specifically the pageid column, with the value of $newid where friendly_name = $friendlyname.
It will then return either boolean true or false, whether any rows were affected.
I hope this is what you mean?

Related

Save multiple associated entities in one go Cakephp

i've an Order that saves, but the multiple orderlines (a product and total price, quantity) for each order isnt saving together with the order.
Here is the log dump at this stage:
{ "associated": [ "Orderlines", "Payments" ], "Orderlines": [ { "total_cost": "222.44", "total_quantity": "2", "product_variants_id": "34" }, { "total_cost": "154", "total_quantity": "2", "product_variants_id": "33" } ], "users_id": 1, "usersaddress_id": 1, "orderstatus": 0, "date": "2017-09-21T01:53:38+00:00", "last_modified": "2017-09-21T01:53:38+00:00" }
Controller:
$associated = ['Orderlines', 'Payments'];
$order = $this->Orders->newEntity(['associated'=>$associated]);
if ($this->request->is('post')) {
$order = $this->Orders->patchEntity($order, $this->request->getData());
$order->users_id = $this->Auth->user('id');
//Hardcoded the SHU MART stores location because thats all thats gonna get implemented for now
$order->usersaddress_id = 1;
$order->orderstatus = 0;
$order->date = Time::now();
$order->last_modified = Time::now();
//god this is ugly. forgive me for i have sinned
$order->setDirty('users_id', true);
$order->setDirty('usersaddress_id', true);
$order->setDirty('date', true);
$order->setDirty('last_modified', true);
$order->setDirty('orderlines', true);
if ($this->Orders->save($order)) {
$this->Flash->success(__('The order has been saved.'));
return $this->redirect(['controller'=>'orderlines','action' => 'index']);
}
$this->Flash->error(__('The order could not be saved. Please, try again.'));
}
and the form inside the orderline loop:
<?php
echo $this->Form->control('Orderlines.'.$orderLineIndex.'.total_cost',
['label'=>'', 'value'=>$product_total
, 'type'=>'hidden'
]);
?>
<?php
echo $this->Form->control('Orderlines.'.$orderLineIndex.'.total_quantity',
['label'=>'', 'value'=>$item['quantity']
, 'type'=>'hidden'
]);
?>
<?php
echo $this->Form->control('Orderlines.'.$orderLineIndex.'.product_variants_id',
['label'=>'', 'value'=>$item['id']
, 'type'=>'hidden'
]);
?>
Now i've tried it without Orderlines. at the start, and tried saving each orderline individually but it wont save the order id and stuff.
I just want to be able to save it in one go. Something like:
order{ id, x, y, orderlines[[0]{OL1...}[1]{OL2}] }
So i can have as many orderlines in an order and save them all together each time. I think im just missing a small syntax thing, but maybe im not.
public 'associated' =>
array (size=2)
0 => string 'Orderlines' (length=10)
1 => string 'Payments' (length=8)
public 'orderlines' =>
array (size=3)
0 =>
object(App\Model\Entity\Orderline)[349]
public 'total_cost' => float 40.28
public 'total_quantity' => int 1
public 'product_variants_id' => int 679
public '[new]' => boolean true
public '[accessible]' =>
array (size=2)
...
public '[dirty]' =>
array (size=3)
...
public '[original]' =>
array (size=0)
...
public '[virtual]' =>
array (size=0)
...
public '[errors]' =>
array (size=0)
...
public '[invalid]' =>
array (size=0)
...
public '[repository]' => string 'Orderlines' (length=10)
1 =>
object(App\Model\Entity\Orderline)[375]
public 'total_cost' => float 66
public 'total_quantity' => int 2
public 'product_variants_id' => int 55
public '[new]' => boolean true
public '[accessible]' =>
array (size=2)
...
public '[dirty]' =>
array (size=3)
...
public '[original]' =>
array (size=0)
...
public '[virtual]' =>
array (size=0)
...
public '[errors]' =>
array (size=0)
...
public '[invalid]' =>
array (size=0)
...
public '[repository]' => string 'Orderlines' (length=10)
2 =>
object(App\Model\Entity\Orderline)[347]
public 'total_cost' => float 222.44
public 'total_quantity' => int 2
public 'product_variants_id' => int 34
public '[new]' => boolean true
public '[accessible]' =>
array (size=2)
...
public '[dirty]' =>
array (size=3)
...
public '[original]' =>
array (size=0)
...
public '[virtual]' =>
array (size=0)
...
public '[errors]' =>
array (size=0)
...
public '[invalid]' =>
array (size=0)
...
public '[repository]' => string 'Orderlines' (length=10)
public 'users_id' => int 1
public 'usersaddress_id' => int 1
public 'orderstatus' => int 0
public 'date' =>
object(Cake\I18n\Time)[327]
public 'time' => string '2017-09-27T21:12:38+10:00' (length=25)
public 'timezone' => string 'Australia/Melbourne' (length=19)
public 'fixedNowTime' => boolean false
public 'last_modified' =>
object(Cake\I18n\Time)[350]
public 'time' => string '2017-09-27T21:12:38+10:00' (length=25)
public 'timezone' => string 'Australia/Melbourne' (length=19)
public 'fixedNowTime' => boolean false
public '[new]' => boolean true
public '[accessible]' =>
array (size=3)
'*' => boolean true
'id' => boolean false
'users_id' => boolean false
public '[dirty]' =>
array (size=7)
'associated' => boolean true
'orderlines' => boolean true
'users_id' => boolean true
'usersaddress_id' => boolean true
'orderstatus' => boolean true
'date' => boolean true
'last_modified' => boolean true
public '[original]' =>
array (size=1)
'orderlines' =>
array (size=3)
0 =>
object(App\Model\Entity\Orderline)[359]
...
1 =>
object(App\Model\Entity\Orderline)[372]
...
2 =>
object(App\Model\Entity\Orderline)[346]
...
public '[virtual]' =>
array (size=0)
empty
public '[errors]' =>
array (size=0)
empty
public '[invalid]' =>
array (size=0)
empty
public '[repository]' => string 'Orders' (length=6)
Thanks.
So there are 2 answers i got. The first being the really-messy-but-works solution, and the one i found later.
if ($result) {
$orderlinescontroller = new OrderlinesController();
if ($orderlinescontroller->addAllFromCart($result->id)) {
$this->Flash->success(__('The order ' . $result->id . ' has been successfully placed'));
$this->clearUsersCart($this->Auth->user('id'));
so first you save the order, then create an instance of the controller of the associated item you need to save multiple of. Then i created a function that looks at the db/session variables for the cart items to save them with the order.
public function addAllFromCart($order_id)
{
$success = true;
$cart_items = $this->getCartItemsArray();
$saved_ids = [];
foreach ($cart_items as $cart) {
$this->log($cart);
$orderline = $this->makeEntity($order_id, $cart);
$new = $this->Orderlines->save($orderline);
if ($new) {
$this->log('Line saved');
array_push($saved_ids, $new->id);
} else {
$this->log('Line save FAILED');
$success = false;
//if there is a failure, we need to delete the lines that we made - there is a better way, but cake sucks and conventions don't work
foreach ($saved_ids as $id_to_delete) {
$d = $this->Orderlines->get($id_to_delete);
$this->Orderlines->delete($d);
}
}
}
$this->log('WAS ADD ALL FROM CART A SUCCESS? -- ' . $success);
// if ($success) {
// return $this->redirect($this->referer());
// } else {
// return $this->redirect($this->referer());
// }
return $success;
}
`
which altogether is super messy and un-cake-ey but it works. The other solution i found out much later when i revisited a part of adding products, was how it explicitly told save() what associations to save. Hence the below was used.
$result = $this->Orders->save($save, ['associated' => ['Orderlines']]);

PHP undefined property in Twitter response

I have a problem with accessing one of the properties in stdClass returned from Twitter api, I'm trying to get property named extended_entities however PHP constantly returns error complaining that the property doesn't exist. I can clearly see it thoug in var_dump. See output:
object(stdClass)[597]
public 'created_at' => string 'Mon Mar 23 16:39:25 +0000 2015' (length=30)
public 'id' => int 580046201061580800
public 'id_str' => string '580046201061580800' (length=18)
...
public 'user' =>
object(stdClass)[600]
...
...
public 'notifications' => boolean false
public 'geo' => null
...
public 'entities' =>
object(stdClass)[581]
public 'hashtags' =>
array (size=0)
empty
public 'symbols' =>
array (size=0)
empty
public 'user_mentions' =>
array (size=0)
empty
public 'urls' =>
array (size=0)
empty
public 'media' =>
array (size=1)
0 =>
object(stdClass)[593]
...
public 'extended_entities' =>
object(stdClass)[573]
public 'media' =>
array (size=2)
0 =>
object(stdClass)[556]
...
1 =>
object(stdClass)[595]
...
public 'favorited' => boolean false
public 'retweeted' => boolean false
public 'possibly_sensitive' => boolean false
public 'possibly_sensitive_appealable' => boolean false
public 'lang' => string 'en' (length=2)
I have no problem getting property for example retweeted, created_at etc. in the following way:
$response->retweeted //this returns false
$response->user //returns stdClass
however
$response->extended_entities
or
$response->extended_entities->media
returns
Notice: Undefined property: stdClass::$extended_entities
I expect to have object or array respectively. I don't understand why I can access some of the properties and this one not?

Ajax between two PHP scripts

I'm tring to perform an AJAX request between 2 PHP scripts, one of them just returns (echoes) some data in the form of a json string:
[{'foo':'bar'}]
And the other one just makes a simple http request to it:
$c = new http\Client;
$r = new http\Client\Request('GET', 'http://example.com/script.php');
$c->enqueue($r,
function(http\Client\Response $r) {
// Do something with the Json here.
return true;
})->send();
But I just can't figure out how to get that Json string from the Response object. PECL's documentation doesn't help at all:
<?php
$request = new http\Client\Request("GET",
"http://example.com",
["User-Agent"=>"My Client/0.1"]
);
$request->setOptions(["timeout"=>1]);
$client = new http\Client;
$client->enqueue($request)->send();
// pop the last retrieved response
$response = $client->getResponse();
printf("%s returned '%s' (%d)\n",
$response->getTransferInfo("effective_url"),
$response->getInfo(),
$response->getResponseCode()
);
?>
This just yields:
http://example.com/ returned 'HTTP/1.1 200 OK' (200)
But nothing more. How can I do this?
Update:
This is a dump of the Response object using var_dump.
object(http\Client\Response)[6]
protected 'type' => int 2
protected 'body' =>
object(http\Message\Body)[5]
protected 'requestMethod' => string '' (length=0)
protected 'requestUrl' => string '' (length=0)
protected 'responseStatus' => string 'OK' (length=2)
protected 'responseCode' => int 200
protected 'httpVersion' => string '1.1' (length=3)
protected 'headers' =>
array (size=7)
'Server' => string 'nginx/1.4.7' (length=11)
'Date' => string 'Sat, 20 Dec 2014 23:20:07 GMT' (length=29)
'Content-Type' => string 'text/html' (length=9)
'Connection' => string 'keep-alive' (length=10)
'X-Powered-By' => string 'PHP/5.5.19' (length=10)
'X-Original-Transfer-Encoding' => string 'chunked' (length=7)
'Content-Length' => int 1695
protected 'parentMessage' =>
object(http\Client\Request)[3]
protected 'type' => int 1
protected 'body' =>
object(http\Message\Body)[8]
protected 'requestMethod' => string 'GET' (length=3)
protected 'requestUrl' => string 'http://localhost/battleturnrest/work.GetTop50.php' (length=49)
protected 'responseStatus' => string '' (length=0)
protected 'responseCode' => int 0
protected 'httpVersion' => string '1.1' (length=3)
protected 'headers' =>
array (size=0)
empty
protected 'parentMessage' => null
protected 'options' => null
protected 'transferInfo' =>
object(stdClass)[7]
public 'effective_url' => string 'http://localhost/battleturnrest/work.GetTop50.php' (length=49)
public 'response_code' => int 200
public 'total_time' => float 0.01084
public 'namelookup_time' => float 0.000913
public 'connect_time' => float 0.001345
public 'pretransfer_time' => float 0.002432
public 'size_upload' => float 0
public 'size_download' => float 1695
public 'speed_download' => float 156365
public 'speed_upload' => float 0
public 'header_size' => int 180
public 'request_size' => int 135
public 'ssl_verifyresult' => int 0
public 'filetime' => int -1
public 'content_length_download' => float -1
public 'content_length_upload' => float 0
public 'starttransfer_time' => float 0.010685
public 'content_type' => string 'text/html' (length=9)
public 'redirect_time' => float 0
public 'redirect_count' => int 0
public 'connect_code' => int 0
public 'httpauth_avail' => int 0
public 'proxyauth_avail' => int 0
public 'os_errno' => int 111
public 'num_connects' => int 1
public 'ssl_engines' =>
array (size=0)
empty
public 'cookies' =>
array (size=0)
empty
public 'redirect_url' => string '' (length=0)
public 'primary_ip' => string '127.0.0.1' (length=9)
public 'appconnect_time' => float 0
public 'condition_unmet' => int 0
public 'primary_port' => int 80
public 'local_ip' => string '127.0.0.1' (length=9)
public 'local_port' => int 45915
public 'curlcode' => int 0
public 'error' => string '' (length=0)
This is exactly the same call-request scenario. The main.php calls answer.php, and it answers with json.
answer.php
<?php
// the json header
header('Content-Type: application/json');
// parameter "value" from URL http://.../answer.php?value=bar
$value = $_REQUEST["value"];
// returns exactly [{'foo':'bar'}]
echo(json_encode(array(array("foo" => $value))));
?>
main.php
<?php
...
$bar = "bar";
$url = "http://.../answer.php?value=" . $bar;
$arr = json_decode(file_get_contents($url));
...
>
The most important thing is main.php executes line by line and you can not send two or more calls to the answer.php in the same moment.
But if:
main.php
<?php
// the crucial difference: asynchronous calls to the answer.php
class Ask_For_Value extends Thread {
public function __construct($value, $func){
$this->val = $value;
$this->func = $func;
}
function start(){
$arr = json_decode(file_get_contents("http://.../answer.php?value=" . $this->val));
call_user_func($this->func, $arr);
return(0);// boolean "OK"
}
}
// function to process the result
function do_some_thihg_with_the_result(&$array){...}
// prepare the threads
$call1 = new Ask_For_Value("bar_1", "do_some_thihg_with_the_result");
$call2 = new Ask_For_Value("bar_2", "do_some_thihg_with_the_result");
$call3 = new Ask_For_Value("bar_3", "do_some_thihg_with_the_result");
// start the threads
$call1->start();
$call2->start();
$call3->start();
// there is nothing happens, because the threads
// will continue execution asynchronous and
// independent in the "function do_some_thihg_with_the_result()"
?>

Laravel -Strange Behaivor. Controller data and Blade data

I am returning a value from a variable in my controller but it yields different results when I dd($roles) in my blade view.
public function index()
{
$users = $this->user->getAll(); //DBUserRepository
$roles = $this->user->getRoles($users)
return $roles;
}
Yields correct results
{
id: "1",
username: "Muzikman",
email: "matt.paolini#gmail.com",
password: "$2y$10$Sp7k9Fs0DwFSYHTpWrTWquFmXJpkiKfRIHsjYtdEXTvbdOJwv9AtG",
password_confirmation: "",
confirmation_code: "91f0583ed76c95ebf378648d65d0eac7",
remember_token: "bGmdTchXtilBj41FIazkFS3PDZzr1tVKmTFnMkeeSoD7wpW6hoQ07A42plle",
confirmed: "1",
created_at: "2014-10-19 12:17:55",
updated_at: "2014-10-20 15:07:01",
roles: [
{
id: "12",
name: "Members",
created_at: "2014-10-24 20:45:26",
updated_at: "2014-10-24 20:45:26",
}
]
However, when return $roles from controller to blade it yields different results.
public function index() { $users = $this->user->getAll(); $roles = $this->user->getRoles($users);
return View::view('admin.index', compact('users'))->withRoles($roles); }
Blade var dump {{ dd($roles) }} returns
array (size=2)
0 =>
object(User)[254]
protected 'connection' => null
protected 'table' => null
protected 'primaryKey' => string 'id' (length=2)
protected 'perPage' => int 15
public 'incrementing' => boolean true
public 'timestamps' => boolean true
protected 'attributes' =>
array (size=10)
'id' => string '1' (length=1)
'username' => string 'Muzikman' (length=8)
'email' => string 'matt.paolini#gmail.com' (length=22)
'password' => string '$2y$10$Sp7k9Fs0DwFSYHTpWrTWquFmXJpkiKfRIHsjYtdEXTvbdOJwv9AtG'
'password_confirmation' => string '' (length=0)
'confirmation_code' => string '91f0583ed76c95ebf378648d65d0eac7' (length=32)
'remember_token' => string 'bGmdTchXtilBj41FIazkFS3PDZzr1tVKmTFnMkeeSoD7wpW6hoQ07A42plle' (
'confirmed' => string '1' (length=1)
'created_at' => string '2014-10-19 12:17:55' (length=19)
'updated_at' => string '2014-10-20 15:07:01' (length=19)
protected 'original' =>
array (size=10)
'id' => string '1' (length=1)
'username' => string 'Muzikman' (length=8)
'email' => string 'matt.paolini#gmail.com' (length=22)
'password' => string '$2y$10$Sp7k9Fs0DwFSYHTpWrTWquFmXJpkiKfRIHsjYtdEXTvbdOJwv9AtG'
'password_confirmation' => string '' (length=0)
'confirmation_code' => string '91f0583ed76c95ebf378648d65d0eac7' (length=32)
'remember_token' => string 'bGmdTchXtilBj41FIazkFS3PDZzr1tVKmTFnMkeeSoD7wpW6hoQ07A42plle' (length=60)
'confirmed' => string '1' (length=1)
'created_at' => string '2014-10-19 12:17:55' (length=19)
'updated_at' => string '2014-10-20 15:07:01' (length=19)
protected 'relations' =>
array (size=1)
Can someone explain what is going on here? Sending the same data object to blade from the controller with different array contents.
Here is the code from my interface:
public function getRoles($users)
{
foreach($users as $user){
$roles[] = \User::with('roles')->find($user->id);
}
return $roles;
}
dd($roles) will spit out the object itself, as see in the second set of output.
{{ $roles }} is going to spit out the object having been run through its toJson() function, resulting in your first set of output.
in this code
public function index()
{
$users = $this->user->getAll(); //DBUserRepository
$roles = $this->user->getRoles($users)
return $roles;
}
you did not dump it, you return the $roles, i think, when you return something and the content is "JSONable", laravel will set the appropriate header and convert the content to JSON. (found in Illuminate\Http\Response)
while the other one
{{ dd($roles) }}
it is same with
<?php var_dump($roles); ?>
which in PHP says that the said function displays structured information about one or more expressions that includes its type and value.
I am just curious. If you are just getting 'roles' column by ::with('roles') function. Why did other info come up in your dd() function result?

Drilling down into JSON with PHP

This is a really simple task, that has me absolutely stumped! I'm pulling back some JSON via CURL and PHP, and attempting to access the data from the below structure:
object(stdClass)[1]
public 'maxResults' => int 43
public 'resultList' =>
array (size=43)
0 =>
object(stdClass)[2]
public '#class' => string '' (length=64)
public 'id' => int
public 'version' => int 0
public 'dateCreated' => string '2014-02-11T18:37:55.835+0000' (length=28)
public 'dateModified' => null
public 'locationId' => int
public 'departmentId' => int
public 'ownerCompanyId' => int
public 'active' => boolean true
public 'userId' => int
public 'userName' => string '' (length=24)
public 'externalCode' => null
public 'employeeDetails' =>
object(stdClass)[3]
...
public 'chargeBandAllocationsIds' =>
array (size=7)
...
public 'personalRateChargeBandId' =>
object(stdClass)[13]
...
public 'employeeGroupIds' =>
array (size=0)
...
public 'isResource' => boolean false
(I've removed some of the values, for privacy reasons)
Now I'm trying to var_dump using var_dump(json_decode($result, false));, however when I try and get into the 'resultList' array using var_dump(json_decode($result['resultList'], false)); I get an illegal string offset error.
$result is the JSON string, your cannot do $result['resultList'] on a string. It only becomes a structure after you json_decode it. However, you're decoding it as object, not array, so this wouldn't work either way.
$data = json_decode($result);
var_dump($data->resultList);
var_dump($data->resultList[0]);
var_dump($data->resultList[0]->id);
foreach ($data->resultList as $employee) {
var_dump($employee->id);
}

Categories