本文整理汇总了PHP中Gradient::create_gradient方法的典型用法代码示例。如果您正苦于以下问题:PHP Gradient::create_gradient方法的具体用法?PHP Gradient::create_gradient怎么用?PHP Gradient::create_gradient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Gradient
的用法示例。
在下文中一共展示了Gradient::create_gradient方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Scaffold_background_gradient
/**
* Creates a gradient in the form of a background image.
*
* @author Anthony Short
* @param $param
* @return string The properties
*/
function Scaffold_background_gradient($params)
{
if (preg_match_all('/\\([^)]*?,[^)]*?\\)/', $params, $matches)) {
foreach ($matches as $key => $original) {
$new = str_replace(',', '#COMMA#', $original);
$params = str_replace($original, $new, $params);
}
}
$params = explode(',', $params);
foreach (array('dir', 'size', 'from', 'to') as $key => $name) {
${$name} = trim(str_replace('#COMMA#', ',', array_shift($params)));
}
$stops = array();
foreach ($params as $stop) {
$stop = preg_replace('/color\\-stop\\(|\\)/', '', $stop);
$stop = explode('#COMMA#', $stop);
$stops[] = array('position' => trim($stop[0]), 'color' => trim($stop[1]));
}
$from = preg_replace('/from\\s*\\(|\\)/', '', $from);
$to = preg_replace('/to\\s*\\(|\\)/', '', $to);
$size = str_replace('px', '', $size);
return Gradient::create_gradient($dir, $size, $from, $to, $stops);
}