第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

字壓重力表單投遞箱鏈接未在$entry對(duì)象中找到

字壓重力表單投遞箱鏈接未在$entry對(duì)象中找到

PHP
冉冉說 2022-09-17 22:32:49
我正在使用WordPress重力表單和Dropbox插件在Dropbox上上傳文件,我試圖在使用PHP提交表單后檢索Dropbox鏈接,正如文檔所說,我應(yīng)該能夠在 https://docs.gravityforms.com/gf_field_dropbox/#-entry-value 的條目中找到該鏈接,但我只能找到WordPress上傳鏈接,盡管當(dāng)我查看我的條目時(shí),dropbox鏈接坐在那里很好,這是我在函數(shù)中使用的代碼.php我當(dāng)前的主題add_action( 'gform_after_submission', 'post_to_third_party', 10, 2 );function post_to_third_party( $entry, $form ) {    $value = rgar( $entry, '158' ); // id of the field that holds the dropbox link    $files = json_decode( $value, true );    foreach ( $files as $file ) {        print_r($file);    }    foreach($entry as $child) { // also trying to print all entry properties but found nothing        echo $child . "<br>";    }    $value1 = GF_Field_Dropbox::get_value_export( $entry, '158' ); // trying export function in the docs but gives the same as first $value    print_r($value1);}提交表單后,我有什么辦法可以訪問 Dropbox 生成的鏈接?
查看完整描述

1 回答

?
拉風(fēng)的咖菲貓

TA貢獻(xiàn)1995條經(jīng)驗(yàn) 獲得超2個(gè)贊

設(shè)法使用此獲取生成的Dropbox鏈接


add_action( 'gform_dropbox_post_upload', 'get_dropbox_urls', 10, 3 );

function get_dropbox_urls( $feed, $entry, $form ) {


    print_r('started get drobbox');

    foreach( $form['fields'] as &$field )  {


        // NOTE: Replace 3 with your Dropbox field id.

        $field_id = 158;

        print_r($field_id,'the field id', $field);

        if ( $field->id != $field_id ) {

            continue;

        }


        // Get the field value.

        $field_value = $entry[ $field->id ];


        // Exit if field value is empty.

        if ( rgblank( $field_value ) ) {

            return;

        }


        // Decode JSON string.

        $files = json_decode( stripslashes_deep( $field_value ), true );

        print_r($files);





    }



}


查看完整回答
反對(duì) 回復(fù) 2022-09-17
  • 1 回答
  • 0 關(guān)注
  • 112 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)