在我正在开发的自定义插件中,我一激活插件就会出现以下错误:
分析错误:语法错误,第106行的/home/site/public\\u html/wp content/plugins/my\\u plugin/plugin.php中出现意外“[”
我已经找到了抛出致命错误的确切路线:
$gallery_pictures_id = get_post_meta( $product_id, \'_product_image_gallery\')[0];
值得注意的是,这一行既适用于本地开发,也适用于临时服务器。
为什么会这样?这有什么奇怪的?
最合适的回答,由SO网友:TheDeadMedic 整理而成
这被称为array dereferencing 并且仅在PHP 5.4中可用+
要支持旧版本,需要分配数组,然后访问索引:
$data = get_post_meta( $product_id, \'_product_image_gallery\' );
$gallery_pictures_id = $data[0];
话虽如此,在您的情况下,使用
third argument "single":
$gallery_pictures_id = get_post_meta( $product_id, \'_product_image_gallery\', true );