get_magic_quotes_gpc
This function has been DEPRECATED as of PHP 7.4.0, and REMOVED as of PHP 8.0.0. Relying on this function is highly discouraged.
fetch().finally(() => 'error');
// Promise { <state>: "rejected", <reason>: TypeError }
// Uncaught (in promise) TypeError: Window.fetch: At least 1 argument required, but only 0 passed
fetch().finally(() => console.log('error'));
// error
// Promise { <state>: "rejected", <reason>: TypeError }
// Uncaught (in promise) TypeError: Window.fetch: At least 1 argument required, but only 0 passed
fetch().finally(() => { throw 'Выбрасываем исключение'; });
// Promise { <state>: "rejected", <reason>: "Выбрасываем исключение" }
// Uncaught (in promise) Выбрасываем исключение
SHOW CREATE TABLE `contacts`