12345678910111213141516171819202122 |
- <?php
- namespace Spider\Lib\Doc;
- use Dever;
- use Spider\Lib\Doc as Doc;
- class Dom extends Core
- {
- public static function init($html)
- {
- return json_decode($html, true);
- }
- public static function find($data, $rule)
- {
- print_r($data);die;
- }
- public static function rule($doc, $dom, $col, $rule)
- {
- print_r($data);die;
- }
- }
|