UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

11 lines (10 loc) 381 B
function strchr(haystack, needle, bool) { // discuss at: http://phpjs.org/functions/strchr/ // original by: Philip Peterson // depends on: strstr // example 1: strchr('Kevin van Zonneveld', 'van'); // returns 1: 'van Zonneveld' // example 2: strchr('Kevin van Zonneveld', 'van', true); // returns 2: 'Kevin ' return this.strstr(haystack, needle, bool); }