当前位置: 首页>>代码示例>>PHP>>正文


PHP stream_preview_image函数代码示例

本文整理汇总了PHP中stream_preview_image函数的典型用法代码示例。如果您正苦于以下问题:PHP stream_preview_image函数的具体用法?PHP stream_preview_image怎么用?PHP stream_preview_image使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了stream_preview_image函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: wp_ajax_imgedit_preview

/**
 * Ajax handler for image editor previews.
 *
 * @since 3.1.0
 */
function wp_ajax_imgedit_preview()
{
    $post_id = intval($_GET['postid']);
    if (empty($post_id) || !current_user_can('edit_post', $post_id)) {
        wp_die(-1);
    }
    check_ajax_referer("image_editor-{$post_id}");
    include_once ABSPATH . 'wp-admin/includes/image-edit.php';
    if (!stream_preview_image($post_id)) {
        wp_die(-1);
    }
    wp_die();
}
开发者ID:hughnet,项目名称:WordPress,代码行数:18,代码来源:ajax-actions.php

示例2: elseif

                } elseif ('no' == $_GET['test']) {
                    update_site_option('can_compress_scripts', 0);
                } elseif ('yes' == $_GET['test']) {
                    update_site_option('can_compress_scripts', 1);
                }
            }
            die('0');
            break;
        case 'imgedit-preview':
            $post_id = intval($_GET['postid']);
            if (empty($post_id) || !current_user_can('edit_post', $post_id)) {
                die('-1');
            }
            check_ajax_referer("image_editor-{$post_id}");
            include_once ABSPATH . 'wp-admin/includes/image-edit.php';
            if (!stream_preview_image($post_id)) {
                die('-1');
            }
            die;
            break;
        case 'oembed-cache':
            $return = $wp_embed->cache_oembed($_GET['post']) ? '1' : '0';
            die($return);
            break;
        default:
            do_action('wp_ajax_' . $_GET['action']);
            die('0');
            break;
    }
}
/**
开发者ID:nagyist,项目名称:laura-wordpress,代码行数:31,代码来源:admin-ajax.php


注:本文中的stream_preview_image函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。