iiif_error()

Description

Handle a IIIF error.

Parameters

ColumnTypeDefaultDescription
$errorcode integer 404 The error code
$errors array array An array of errors

Return

void

Location

include/iiif_functions.php lines 1418 to 1425

Definition

 
function iiif_error($errorcode 404$errors = array())
{
    if (
function_exists("http_response_code")) {
        
http_response_code($errorcode); # Send error status
    
}
    echo 
json_encode($errors);
    exit();
}

This article was last updated 8th July 2025 21:05 Europe/London time based on the source file dated 23rd May 2025 11:20 Europe/London time.