本文整理汇总了PHP中arr::smart_cast方法的典型用法代码示例。如果您正苦于以下问题:PHP arr::smart_cast方法的具体用法?PHP arr::smart_cast怎么用?PHP arr::smart_cast使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类arr
的用法示例。
在下文中一共展示了arr::smart_cast方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _attemptRepopulate
/**
* This function attempts to find a repopulate var based on the name of the element and
* set the value, unless that value is not already set.
*
* @param array $data The elements data array, used to check if the key value exists
* @param string $value The current elements value, this is set if it is currently empty
* @return void
*/
protected function _attemptRepopulate($name, $value, $returnValue = NULL)
{
if (!is_null($value)) {
return $value;
}
if (substr($name, 0, 2) == '__') {
return $value;
}
// if ((!is_null($returnValue)) AND ($pos = strpos($name, '[]')))
// {
// $parentArray = substr($name, 0, $pos);
//
// $subArray = substr($name, $pos + 2);
//
// foreach (self::$repopulateValues as $key => $repopulateValue)
// {
// if (!strstr($key, $parentArray))
// {
// continue;
// }
//
// if (!strstr($key, $subArray))
// {
// continue;
// }
//
// if ($returnValue == $repopulateValue)
// {
// return TRUE;
// }
// }
// }
// get the first part of the name (up to the first [)
list($varname) = explode('[', $name);
if (is_object(View::$instance) and View::$instance->is_set($varname)) {
$viewVar = View::$instance->{$varname};
if (is_string($viewVar) or is_bool($viewVar)) {
return $viewVar;
}
$viewVar = arr::smart_cast($viewVar);
if (!is_null($viewValue = arr::get_string($viewVar, $name, TRUE))) {
return $viewValue;
}
}
if (!is_null($postValue = arr::get_string($_POST, $name))) {
return $postValue;
}
return $value;
}