Lines Matching refs:string

7  * is a string, not array
45 "reverse", // Reverse a string
85 * @param string $name helper name
102 * @param string $name helper name
114 * @param string $name helper name
130 * @param string $name helper name
143 * @param string $name helper name
157 * @param string $name helper name to remove
168 * @param string $name helper name
218 * @param string $source part of template that is wrapped
291 * @param string $source part of template that is wrapped
365 * @return string
386 * @param string $source part of template that is wrapped
413 * @param string $source part of template that is wrapped
436 * @param string $source part of template that is wrapped
447 * To uppercase string
454 * @param string $source part of template that is wrapped
457 * @return string
465 * To lowercase string
472 * @param string $source part of template that is wrapped
475 * @return string
490 * @param string $source part of template that is wrapped
493 * @return string
508 * @param string $source part of template that is wrapped
511 * @return string
519 * To reverse a string
526 * @param string $source part of template that is wrapped
529 * @return string
544 * @param string $source part of template that is wrapped
576 * @param string $source part of template that is wrapped
600 * @param string $source part of template that is wrapped
603 * @return string
615 * Truncate a string to a length, and append and ellipsis if provided
622 * @param string $source part of template that is wrapped
625 * @return string
648 * @param string $source part of template that is wrapped
669 * @param string $source part of template that is wrapped
672 * @return string
698 * @param string $source part of template that is wrapped
725 * @param string $source part of template that is wrapped
742 * @param string $string
743 * @return string
745 private function underscoreToCamelCase($string)
747 return str_replace(' ', '', ucwords(str_replace('_', ' ', $string)));
762 * @param string $string
765 private function extractSlice($string)
767 preg_match("/^([\w\._\-]+)(?:\[([\-0-9]*?:[\-0-9]*?)\])?/i", $string, $m);