PHP-Fusion
v.7.01
AP-Fusion
v7.02.05
Pimped-Fusion-AP
v0.09.03
May 02 2024 00:59:49
Авторизация
Логин

Пароль



Вы не зарегистрированы?
Нажмите здесь для регистрации.

Забыли пароль?
Запросите новый здесь.
Мини-чат
Вы должны авторизироваться, чтобы добавить сообщение.

lom
06/04/2018 14:03
Мы рады, ждем девятку. Очень хочется пощупать

Alipapa
27/03/2018 22:16
Всем привет, все неисправности устранили, всё у нас работает

mukaton
30/10/2015 02:37
Не получается ничего скачать. Ошибка Not Found

Alipapa
06/10/2015 23:00
9-я версия php-fusion на подходе, следите за новостями

Alipapa
10/11/2014 11:24
Заметь, я дважды ответил через 3 минуты после вопроса, могли бы уже решить

Последние статьи
· О стабилизаторах нап...
· СМС и Вебмани
· TinyMCE для пользова...
· PCRE (Perl Compatibl...
· PCRE (Perl Compatibl...
Последние активные темы форума
  Темы Просмотров Ответов Последние сообщения
PHP-Fusion 7 Bogatyr - бесп...
Моды, плагины
7153 1 Vveb--ws
08-10-2018 16:47
Php-Fusion v9. Первые впеча...
Вопросы по работе
4520 3 Vveb--ws
25-07-2018 13:46
Появился хэлп по PHP-Fusion...
Вопросы по работе
6751 7 Vveb--ws
25-07-2018 13:42
prestashop&ap-fusion
Вопросы по работе
17383 61 Alipapa
26-08-2014 10:29
Плагин магазина Ap-Shop
Моды, плагины
14619 70 Alipapa
18-08-2014 18:14
TinyMCE
Вопросы по работе
21135 55 Alipapa
27-07-2013 21:57
HTML-5
Моды, плагины
5442 1 Alipapa
15-06-2013 19:47
Мультиязычность в Pimped-Fu...
Ошибки, баги, глюки
6273 4 Papich
16-04-2013 12:39
Pimped-Fusion. Первые впеча...
Ошибки, баги, глюки
21746 127 Alipapa
18-12-2012 10:59
Ищу мод для расстановки код...
Моды, плагины
15026 55 Alipapa
17-09-2012 14:00
Как присоединить файл к лич...
Моды, плагины
8270 3 lom
27-05-2012 18:12
Что мне не нравится в после...
Вопросы по работе
6860 4 Alipapa
27-05-2012 18:08
Проблемы с добавлением кате...
Вопросы по работе
7757 5 Alipapa
27-05-2012 18:06

DomNode->append_child

(no version information, might be only in CVS)

DomNode->append_child --  Adds new child at the end of the children

Описание

domelement DomNode->append_child ( domelement newnode )

This functions appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. domdocument_create_element(), domdocument_create_text() etc. or simply by using any other node.

(PHP < 4.3) Before a new child is appended it is first duplicated. Therefore the new child is a completely new copy which can be modified without changing the node which was passed to this function. If the node passed has children itself, they will be duplicated as well, which makes it quite easy to duplicate large parts of an XML document. The return value is the appended child. If you plan to do further modifications on the appended child you must use the returned node.

(PHP 4.3.0/4.3.1) The new child newnode is first unlinked from its existing context, if it's already a child of DomNode. Therefore the node is moved and not copies anymore.

(PHP >= 4.3.2) The new child newnode is first unlinked from its existing context, if it's already in the tree. Therefore the node is moved and not copied. This is the behaviour according to the W3C specifications. If you want to duplicate large parts of an XML document, use DomNode->clone_node() before appending.

The following example will add a new element node to a fresh document and sets the attribute "align" to "left".

Пример 1. Adding a child

<?php
$doc
= domxml_new_doc ( "1.0" );
$node = $doc -> create_element ( "para" );
$newnode = $doc -> append_child ( $node );
$newnode -> set_attribute ( "align" , "left" );
?>
The above example could also be written as the following:

Пример 2. Adding a child

<?php
$doc
= domxml_new_doc ( "1.0" );
$node = $doc -> create_element ( "para" );
$node -> set_attribute ( "align" , "left" );
$newnode = $doc -> append_child ( $node );
?>
A more complex example is the one below. It first searches for a certain element, duplicates it including its children and adds it as a sibling. Finally a new attribute is added to one of the children of the new sibling and the whole document is dumped.

Пример 3. Adding a child

<?php
include( "example.inc" );

if (!
$dom = domxml_open_mem ( $xmlstr )) {
  echo
"Error while parsing the document\n" ;
  exit;
}

$elements = $dom -> get_elements_by_tagname ( "informaltable" );
print_r ( $elements );
$element = $elements [ 0 ];

$parent = $element -> parent_node ();
$newnode = $parent -> append_child ( $element );
$children = $newnode -> children ();
$attr = $children [ 1 ]-> set_attribute ( "align" , "left" );

echo
"<pre>" ;
$xmlfile = $dom -> dump_mem ();
echo
htmlentities ( $xmlfile );
echo
"</pre>" ;
?>
The above example could also be done with domnode_insert_before() instead of domnode_append_child().

Смотрите также domnode_insert_before(), and domnode_clone_node().

Все функции PHP:
Навигация
· Новости
· Статьи
· Скачать
· Форум
· Ссылки
· Категории новостей
· Обратная связь
· Галерея
· Поиск
· CMS AP-Fusion. Отличия от PHP-Fusion
· Javascript справочник
· Техника
Сейчас на сайте
· Гостей: 2

· Пользователей: 0

· Всего пользователей: 453
· Новый пользователь: ZDA
Информеры
Загрузка файлов  +  -
9,955,149 уникальных посетителей Iceberg by Harly