/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/dom/tests/DOMDocument_saveHTMLFile_invalid_filename.phpt
27 строк
741 B
Gina Peter Bnayard
Use "must not" instead of "cannot" wording
21 авг 2024, 23:12
21 авг 2024, 23:12
5853cdb
Код
Авторство
О чём код?
--TEST-- DOMDocument::saveHTMLFile() should fail with invalid filename --CREDITS-- Knut Urdalen <knut@php.net> #PHPTestFest2009 Norway 2009-06-09 \o/ --EXTENSIONS-- dom --FILE-- <?php $filename = ''; $doc = new DOMDocument('1.0'); $root = $doc->createElement('html'); $root = $doc->appendChild($root); $head = $doc->createElement('head'); $head = $root->appendChild($head); $title = $doc->createElement('title'); $title = $head->appendChild($title); $text = $doc->createTextNode('This is the title'); $text = $title->appendChild($text); try { $doc->saveHTMLFile($filename); } catch (ValueError $exception) { echo $exception->getMessage() . "\n"; } ?> --EXPECT-- DOMDocument::saveHTMLFile(): Argument #1 ($filename) must not be empty