Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.5k views
in Technique[技术] by (71.8m points)

python - Get BLOB file from phpMyadmin?

Hi all :) I've been programming recently in PHP and looking to convert BLOB files to show in a designated folder. The $file is a blob file of type jpeg, PDF or docx. I've annotated the code trying to do this.

add_action( 'elementor_pro/forms/new_record', function( $record, $ajax_handler ) {
    
    $raw_fields = $record->get( 'fields' );
    $fields = [];
    foreach ( $raw_fields as $id => $field ) {
        $fields[ $id ] = $field['value'];
    }
    
    global $wpdb;
    $output['success'] = $wpdb->insert('testfactuur', array( 'Email2' => $fields['email2'], 'Bedrijfsnaam2' => $fields['bedrijfsnaam2'], 'File' => $fields['file']));
    
    insert('testfactuur', array('Email2' => $fields['email2'], array('Bedrijfsnaam2' => $fields['bedrijfsnaam2'], array('File' => $fields['file']

#trying to convert #file to a readable format on local drive
    
    $ajax_handler->add_response_data( true, $output );
    
}, 10, 2);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...