1

I have array like below:

Array
(
    [_edit_lock] => Array
        (
            [0] => 1309611144:1
        )

    [_edit_last] => Array
        (
            [0] => 1
        )

    [banner_url] => Array
        (
            [0] => http://apptivowp.apptivo.com/awp-content/10001/uploads/2011/07/gallery_banner.jpg
        )

    [_yoast_wpseo_focuskw] => Array
        (
            [0] => 
        )

    [_yoast_wpseo_title] => Array
        (
            [0] => 
        )
)

How can I get the banner_url value?

Cyclonecode
  • 29,115
  • 11
  • 72
  • 93
Ravichandran Jothi
  • 3,028
  • 11
  • 52
  • 82

1 Answers1

2

As simple as:

$array['banner_url'][0]
deceze
  • 510,633
  • 85
  • 743
  • 889