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
| <?php | |
| /** | |
| * PHP implementation Boyer Moore Horspool Algorithm | |
| * | |
| * PHP version 5 | |
| * | |
| * @category Algorithm | |
| * @package Horspool_Algorithm | |
| * @author ren <ren_ice@live.com> | |
| * @copyright 2017 notepy |
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
| <?php | |
| /** | |
| * PHP Indonesia holiday check | |
| * | |
| * PHP version 5 | |
| * | |
| * @category Tools | |
| * @package Indonesia_Holiday | |
| * @author ren <ren_ice@live.com> | |
| * @copyright 2010-2017 notepy |
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
| <?php | |
| //configuration | |
| $key="API key"; | |
| $event="event_name"; | |
| //data | |
| $data=json_encode(array( "value1"=>"data for value1","value2"=>"data for value2","value3"=>"data for value3")); |