<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<style type='text/css'>
body > div {
width:400px;
}
.row {
display:table-row;
}
.row input[type=text]{
width:100%;
}
.row div:first-child {
display:table-cell; white-space:nowrap;
}
.row div:nth-child(2){
display:table-cell;
width:100%;
padding-right:4px;
}
.row div:nth-child(3){
width:40px;
}
</style>
</head>
<body>
<div>
<div class='row'>
<div>Floating size</div>
<div>
<input type='text'/>
</div>
<div>40px;</div>
</div>
</div>
<div>
<div class='row'>
<div>Really Floating size</div>
<div>
<input type='text'/>
</div>
<div>40px;</div>
</div>
</div>
</body>
</html>
* This source code was highlighted with Source Code Highlighter.
<?
$str = "{Пожалуйста|Просто} сделайте так, чтобы это {удивительное|крутое|простое} тестовое предложение {изменялось {быстро|мгновенно} случайным образом|менялось каждый раз}";
$finishStrs = array();
getVariants($str);
function getVariants($str) {
global $finishStrs;
$strs = array();
if(preg_match("~\{([^{}]+)\}~siU", $str, $m)) {
$foundExpression = $m[1];
$currentVariants = explode("|", $foundExpression);
foreach($currentVariants as $var) {
$strs[] = str_replace('{'.$foundExpression.'}', $var, $str);
}
foreach($strs as $currentStr) {
if(preg_match("~\{([^{}]+)\}~siU", $currentStr, $m)) {
getVariants($currentStr);
} else {
$finishStrs[] = $currentStr;
}
}
} else {
$finishStrs = $str;
}
}
print_r($finishStrs);
$this->renderPartial('export_xml', array('data'=>$data));
Можно ли заставить отдавать шаблон файлом?