array conversion with in array PHP

mohd

i need to convert bellow array from

Array
(
[Property] => Array
        (
            [S] => Built As Condominium
        )
)

to

Array
(
[property] => Built As Condominium
)

is their any way.

Shankar Damodaran

You could use an implode under a foreach

<?php
$arr=Array ( 'Property' => Array ( 'S' => 'Built As Condominium' ) );
foreach($arr as $k=>$arr1)
{
    $arr[$k]=implode('',$arr1);
}
print_r($arr);

Demo

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Array of Array to String Conversion in PHP

From Dev

PHP: Array to string conversion

From Dev

PHP Array to string conversion

From Dev

PHP MYSQLi: Array to string conversion

From Dev

notice: array to string conversion in php

From Dev

string to array conversion using php

From Dev

Array to string conversion in php _construct()

From Dev

Notice: Array to string conversion PHP

From Dev

PHP Array to string conversion error

From Dev

PHP Array to String conversion issue

From Dev

Array to string conversion in php _construct()

From Dev

curl to php conversion, array + json

From Dev

A PHP Error was encountered array conversion

From Dev

Array to string conversion php, assoc array

From Dev

Array to string conversion php, assoc array

From Dev

PHP Array Conversion with removing Array Name

From Dev

PHP Notice: Array to string conversion Error

From Dev

PHP Notice: Array to string conversion on line 10

From Dev

PHP array to javascript conversion altering the index values

From Dev

MySQL String Object to PHP array conversion

From Dev

PHP Array to string conversion in multiple selected dropdown

From Dev

php array conversion from two to one dimension

From Dev

php array conversion instead of number put name

From Dev

PHP Notice: Array to string conversion on line 10

From Dev

php Array to string conversion error on query concatenation

From Dev

A PHP Error Message: Array to string conversion

From Dev

php array conversion from two to one dimension

From Dev

PHP Array to string conversion in multiple selected dropdown

From Dev

PHP Array to string conversion with preg_match