Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $result = (результат выполнения курла);
- $doc = new DOMDocument();
- $doc->loadHTML($result);
- $ar = array();
- $as = $doc->getElementsByTagName('input');
- foreach ($as as $a) {
- $name = $a->getAttribute('name');
- $value = $a->getAttribute('value');
- if (empty($name, $value)) {
- continue;
- }
- $ar[$name] = $value;
- }
Advertisement
Add Comment
Please, Sign In to add comment