<?php class MyOrderClass { public $id; public $many; public $cost; public function __construct($id, $many, $cost) { $this->id = $id; $this->many = $many; $this->cost = $cost; } } $order = new MyOrderClass(1, 1, 100); $order = (array) $order; var_dump($order);
You have javascript disabled. You will not be able to edit any code.