PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
themes
/
rehub
/
vafpress-framework
/
classes
/
util
<?php class VP_Util_Text { public static function parse_md($text) { if(!class_exists('Parsedown')) { $path = VP_FileSystem::instance()->resolve_path('includes', 'parsedown'); require $path; } return Parsedown::instance()->parse($text); } public static function make_opt($optArray) { $optString = ""; foreach ($optArray as $key => $value) { $optString .= "(" . $key . ":" . $value . ")"; } return $optString; } public static function print_if_exists($value, $format) { if (!empty($value)) { if (is_array($value)) { $value = implode($value, ', '); } call_user_func('printf', $format, $value); } } public static function return_if_exists($value, $format) { $result = ''; if (!empty($value)) { if (is_array($value)) { $value = implode($value, ', '); } $result = call_user_func('sprintf', $format, $value); } return $result; } public static function out($string, $default) { if( empty($string) ) echo ''.$default; else echo ''.$string; } public static function prefix(&$item, $key, $prefix) { $item = $prefix . $item; } public static function prefix_array($array, $prefix) { array_walk( $array, 'VP_Util_Text::prefix', $prefix); return $array; } public static function starts_with($haystack, $needle) { return !strncmp($haystack, $needle, strlen($needle)); } public static function ends_with($haystack, $needle) { $length = strlen($needle); if ($length == 0) { return true; } return (substr($haystack, -$length) === $needle); } public static function flanked_by($haystack, $left, $right = '') { if( $right == '' ) $right = $left; return (self::starts_with($haystack, $left) and self::ends_with($haystack, $right)); } }
[+]
..
[-] array.php
[edit]
[-] config.php
[edit]
[-] text.php
[edit]
[-] reflection.php
[edit]
[-] res.php
[edit]
[-] profiler.php
[edit]