This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public function getHtml($url, $follow = true, $level = 100) { | |
| echo "\n\n=======GET====================\n"; | |
| echo $url . "\n"; | |
| echo "\n"; | |
| return parent::getHtml($url, $follow, $level); | |
| } | |
| public function postHtml($url, $post, $follow = true, $level = 5) { | |
| echo "\n\n=======POST====================\n"; | |
| echo $url . "\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * oneZero plugin for true coders | |
| * | |
| * How to use | |
| * | |
| * $('html').oneZero(); //replace all chars that is valid for default regex in html node | |
| * | |
| * $('#footer').oneZero({charsPattern:/^[0-9]$/i}); //replace all numerical chars in #footer node | |
| * | |
| * |
NewerOlder