You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lychee/php/Modules/Response.php

25 lines
323 B

<?php
namespace Lychee\Modules;
final class Response {
public static function warning($msg) {
exit(json_encode('Warning: ' . $msg));
}
public static function error($msg) {
exit(json_encode('Error: ' . $msg));
}
public static function json($str, $options = 0) {
exit(json_encode($str, $options));
}
}