ItSolutionStuff.com

How to Convert Object into Array in PHP?

By Hardik Savani • May 14, 2024
PHP

Hi Developer,

In this short tutorial, we will share the quick and straightforward way to php convert object to array. This post will give you a simple example of convert stdclass object to array in php. If you have a question about php object to array convert then I will give a simple example with a solution. Here you will learn php convert object to array example

Whenever you need to convert object to array in your php project then you can do that using (array). It is a pretty simple example to convert php object into array that way you can use array. So, let's see the following example.

Example:

<?php

class MyClass {

}

$myObject = new MyClass;

$myObject->id = 100;

$myObject->title = "posts";

$myObject->description = "this is posts";

$newArray = (array) $myObject;

print_r($newArray);

?>

Output:

Array

(

[id] => 100

[title] => posts

[description] => this is posts

)

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Previous Month from Date in PHP?

Read Now →

How to Find Number from String in PHP?

Read Now →

How to Get HTML Tag Value in PHP?

Read Now →

PHP Curl Get Request with Parameters Example

Read Now →

PHP Change File Name in Folder Example

Read Now →

PHP Move File from One Folder to Another Example

Read Now →

PHP Copy File from One Folder to Another Example

Read Now →

PHP Multidimensional Array Search By Value Example

Read Now →

How to Change Date Format in PHP?

Read Now →

How to Convert Array to JSON in PHP?

Read Now →

PHP CURL Post Request with Parameters Example

Read Now →

PHP MySQL Column Sorting Example Tutorial

Read Now →

How to Count Number of Files in a Directory in PHP?

Read Now →

How to Find Day Name from Specific Date in PHP?

Read Now →