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
| (function ( $ ) { | |
| $.qsParameters = function(str) { | |
| var qso = {}; | |
| var qs = (str || document.location.search) | |
| // Check for an empty querystring | |
| if (qs == ""){ | |
| return qso; | |
| } | |
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
| function contains($haystack, $needle, $caseSensitive = false) { | |
| return $caseSensitive? | |
| (strpos($haystack, $needle) === FALSE ? FALSE : TRUE): | |
| (stripos($haystack, $needle) === FALSE ? FALSE : TRUE); | |
| } | |
| var_dump(contains('bare','are')); // Outputs : bool(true) | |
| var_dump(contains('stare', 'are')); // Outputs : bool(true) | |
| var_dump(contains('stare', 'Are')); // Outputs : bool(true) | |
| var_dump(contains('stare', 'Are', true)); // Outputs : bool(false) |
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
| var helper = {}; | |
| helper.string = { | |
| contains : function (haystack, needle) { | |
| return !!~haystack.indexOf(needle); | |
| }, | |
| ... | |
| }; |
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 | |
| // A pretty basic but effective class that can be used for doing CRUD operations on Microsoft Dynamics NAV's Odata services | |
| error_reporting(E_ALL); | |
| ini_set("display_errors", 1); | |
| class http_request { | |
| protected $_handle = NULL; |
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
| function parseQuery(str) { | |
| var qso = {}; | |
| var qs = (str || document.location.search); | |
| // Check for an empty querystring | |
| if (qs == "") { | |
| return qso; | |
| } | |
| // Normalize the querystring | |
| qs = qs.replace(/(^\?)/, '').replace(/;/g, '&'); | |
| while (qs.indexOf("&&") != -1) { |
OlderNewer