私はWordPressプラグインで作業しています。投稿のデータを保持する$ itemという変数があります。PHP抽出値が変数になります
私はそれのデータ、
var_dump($item);
を表示する機能を使用してのvar_dumpが、私は単一の項目の値を取得することはできませんでした。
私はちょうどのitem_idと
item_order誰かがこの値を取得し、別の変数に割り当てるために私を助けることができますを取得する必要があります。 はあなたがダンプ
object(LP_Lesson)#11313 (5) {
["id"]=> int(6915)
["post"]=> object(WP_Post)#11357 (29) {
["ID"]=> int(6915) ["post_author"]=> string(1) "1"
["post_date"]=> string(19) "2015-06-05 04:29:56" ["post_date_gmt"]=> string(19) "2015-06-05 04:29:56" ["post_content"]=> string(5971) "" ["post_title"]=> string(20) "Add and manage users" ["post_excerpt"]=> string(1) " " ["post_status"]=> string(7) "publish"
["post_parent"]=> int(0) ["guid"]=> string(66) "test" ["menu_order"]=> int(0) ["post_type"]=> string(9) "lp_lesson" ["post_mime_type"]=> string(0) "" ["comment_count"]=> string(1) "0" ["filter"]=> string(3) "raw" ["section_item_id"]=> string(1) "3"
["section_id"]=> string(1) "1"
["item_id"]=> string(4) "6915"
["item_order"]=> string(1) "3"
["item_type"]=> string(9) "lp_lesson" }
["content"]=> string(0) "" ["lesson_type"]=> NULL ["_item":protected]=> object(WP_Post)#11357 (29) { ["ID"]=> int(6915) ["post_author"]=> string(1) "1" ["post_date"]=> string(19) "2015-06-05 04:29:56" ["post_date_gmt"]=> string(19) "2015-06-05 04:29:56" ["post_content"]=> string(5971) "
$item->id
はあなたがそれだけの '$アイテム - >のitem_idイマイチそのPHPオブジェクトので – Regolithを必要とするデータにアクセスし、これまでに何をしようとしたエコー'? – Deckerz
'$ item-> id'と' $ item-> post-> item_order'を試しましたか? – AliAwwad