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


PHP Output::http_error方法代码示例

本文整理汇总了PHP中Output::http_error方法的典型用法代码示例。如果您正苦于以下问题:PHP Output::http_error方法的具体用法?PHP Output::http_error怎么用?PHP Output::http_error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Output的用法示例。


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

示例1:

<?php

Output::http_error(404);
开发者ID:radiowarwick,项目名称:digiplay,代码行数:3,代码来源:404.php

示例2:

<?php

Output::http_error(410);
开发者ID:radiowarwick,项目名称:digiplay,代码行数:3,代码来源:410.php

示例3: die

<?php 
if (!Session::is_group_user("Importer")) {
    Output::http_error(403);
} else {
    if (!isset($_REQUEST["filename"])) {
        die(json_encode(array("error" => "invalid input file")));
    }
    $uploaded_file = utf8_decode(FILE_ROOT . "uploads/" . $_REQUEST["filename"]);
    if (!isset($_REQUEST["type"])) {
        $_REQUEST["type"] = "music";
    }
    if (!isset($_REQUEST["title"]) || $_REQUEST["title"] === "") {
        die(json_encode(array("error" => "You must specify a title")));
    }
    $current_archive = Archives::get_playin();
    $path = is_dir($current_archive->get_localpath()) ? $current_archive->get_localpath() : (is_dir($current_archive->get_remotepath()) ? $current_archive->get_remotepath() : die(json_encode(array('error' => 'Playin archive inaccessible'))));
    if (!is_writable($path)) {
        die(json_encode(array("error" => "Audio archive is not writable")));
    }
    $tempfile = tempnam(sys_get_temp_dir(), 'dps') . "." . pathinfo($uploaded_file, PATHINFO_EXTENSION);
    copy($uploaded_file, $tempfile);
    $md5 = md5_file($tempfile);
    $output = array();
    # Execute SoX to convert our audio
    # Trim silence from beginning and end (1% volume threshold)
    # Convert to 44.1kHz 16-bit stereo for consistency
    # Normalise to -0.1dB
    # Save as flac in inbox
    exec("sox \"" . $tempfile . "\" -b 16 \"" . $path . "/inbox/" . $md5 . ".flac\" silence 1 0.1 -72d reverse silence 1 0.1 -72d reverse channels 2 rate 44100 gain -n -0.1 2>&1", $output);
    if (strpos(implode($output), "FAIL")) {
开发者ID:radiowarwick,项目名称:digiplay,代码行数:30,代码来源:import-track.php


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