php media_sideload_image.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php media_sideload_image.php相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Загружает изображение в медиабиблиотеку по переданному url.
 *
 * @param string $url
 * @param int    $post_id
 *
 * @return int|WP_Error
 */
protected function media_sideload_image( $url, $post_id = 0 ) {
    $file_array = [];

    // Download file to temp location.
    $file_array['tmp_name'] = download_url( $url );

    // If error storing temporarily, return the error.
    if ( is_wp_error( $file_array['tmp_name'] ) ) {
        return $file_array['tmp_name'];
    }

    $ext = strtok( array_search( mime_content_type( $file_array['tmp_name'] ), get_allowed_mime_types() ), '|' );

    $file_array['name'] = basename( $url ) . ( $ext ? ".$ext" : '' );

    // Do the validation and storage stuff.
    $id = media_handle_sideload( $file_array, $post_id );

    // If error storing permanently, unlink.
    if ( is_wp_error( $id ) ) {
        @unlink( $file_array['tmp_name'] );

        return $id;
        // If attachment id was requested, return it early.
    } else {
        return $id;
    }
}

以上是关于php media_sideload_image.php的主要内容,如果未能解决你的问题,请参考以下文章

linux 安装多个PHP版本(php5.6 php7.1 php7.2 php7.3 php7.4 php8.0)nginx配置php多版本

php [guzzle php] guzzle php #php

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?