访问对象内部的数组数据(Wordpress)


WC_Product_Attribute对象([data:protected]=>阵列([id]=>1[名称]=>pa_color[选项]=>阵列([0]=>26[1] =>27[2] =>30)[位置]=>0[visible]=>1[变化]=>1))

如何访问名称、选项等的值

WC_Product_Attribute对象应该可以访问可以检索受保护数据的方法。

假设您的WC_Product_Attribute存储在变量$attribute中。您应该能够使用像$attribute->get_options()$attribute->get_name()这样的方法来获取受保护的数据。

我建议查看WooCommerce文档,以获得更全面的方法列表:

https://woocommerce.github.io/code-reference/classes/WC-Product-Attribute.html

相关内容

  • 没有找到相关文章