File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ Filter |Description
140
140
[ attribute$=value] |Matches elements that have the specified attribute and it ends with a certain value.
141
141
[ attribute* =value] |Matches elements that have the specified attribute and it contains a certain value.
142
142
143
- ### Текст, комментарии (не реализовано)
143
+ ### Текст, комментарии
144
144
145
145
``` php
146
146
@@ -160,11 +160,9 @@ $es = $html->find('comment');
160
160
// Get a attribute ( If the attribute is non-value attribute (eg. checked, selected...), it will returns true or false)
161
161
$value = $e->href;
162
162
163
- // Не реализовано
164
163
// Set a attribute(If the attribute is non-value attribute (eg. checked, selected...), set it's value as true or false)
165
164
$e->href = 'my link';
166
165
167
- // Не реализовано
168
166
// Remove a attribute, set it's value as null!
169
167
$e->href = null;
170
168
@@ -194,7 +192,7 @@ $e->outertext |Read or write the outer HTML text of element.
194
192
$e->innertext |Read or write the inner HTML text of element.
195
193
$e->plaintext |Read or write the plain text of element.
196
194
197
- ### Трюки (не реализовано)
195
+ ### Трюки
198
196
199
197
``` php
200
198
You can’t perform that action at this time.
0 commit comments