本文整理汇总了PHP中ArrayHelper::typeCast方法的典型用法代码示例。如果您正苦于以下问题:PHP ArrayHelper::typeCast方法的具体用法?PHP ArrayHelper::typeCast怎么用?PHP ArrayHelper::typeCast使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArrayHelper
的用法示例。
在下文中一共展示了ArrayHelper::typeCast方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: typeCast
/**
* TypeCast a string to its specific types.
*
* Arrays will passed to to the {{luya\helpers\ArrayHelper::typeCast}} class.
*
* @param mixed $string The input string to type cast. Arrays will be passted to {{luya\helpers\ArrayHelper::typeCast}}.
* @return mixed The new type casted value, if the input is an array the output is the typecasted array.
*/
public static function typeCast($string)
{
if (is_numeric($string)) {
if (is_float($string)) {
return (double) $string;
} else {
return (int) $string;
}
} elseif (is_array($string)) {
return ArrayHelper::typeCast($string);
}
return $string;
}