Veri almak için bir dizi nesne dönüştürmek nasıl?

0 Cevap php

Benim dizi böyle geliyor

Array ( [0] => stdClass Object ( [ID] => 578 [post_author] => 1 [post_date] => 2011-01-18 07:23:17 [post_date_gmt] => 2011-01-18 07:23:17 [post_content] => Home WordPress is web software you can use to create a beautiful website or blog. We like to say that WordPress is both free and priceless at the same time. The core software is built by hundreds of community volunteers, and when you’re ready for more there are thousands of plugins and themes available to transform your site into almost anything you can imagine. Over 25 million people have chosen WordPress to power the place on the web they call “home” — we’d love you to join the family [post_title] => second post [post_excerpt] => [post_status] => publish [comment_status] => open

ben böyle yazdığınızda

$myposts = get_posts( $args );
$arrDt = (array) $myposts;
print_r($arrDt);

ama benim sorunum nasıl ben bu nesne dizinin içindeki değerleri alabiliriz.

please help. Thnx print_r($arrDt);

0 Cevap