applyDynamicsToHtml() applyDynamicsToHtml(string $src,array $dynamics) Takes any string and replaces `{{myVariable}}` with the value of the passed `dynamics` map. Parameters string $src array $dynamics
array_flatten() array_flatten(array $array,boolean $recursive = false) Flatten an array. Parameters array $array boolean $recursive
createRegexpPatternFromWildcardName() createRegexpPatternFromWildcardName(string $name) Create a pattern for `preg_match_all` usage. Parameters string $name
startsWith() startsWith(string $haystack,string $needle) Check if a string starts with a given needle. Parameters string $haystack The string to search in string $needle The starting string
endsWith() endsWith(string $haystack,string $needle) Check if a string starts with a given needle. Parameters string $haystack The string to search in string $needle The starting string