Для SELECT (в примере для получения всех активных товаров)
$oCore_QueryBuilder_Select = Core_QueryBuilder::select()
->from('shop_items')
->where('active', '=', 1);
$aRows = $oCore_QueryBuilder_Select->execute()->asAssoc()->result();
foreach ($aRows as $row) {
echo '<option value="'.$row['id'].'">'.$row['name'].'</option>';
}
Документация по QueryBuilder: http://www.hostcms.ru/documentation/guide/modules/core/querybuilder/
Ошибка при редактировании шаблонов: экранирование кавычек (портятся файлы template.htm
и style.css
). В следствии чего на сайте
Unexpected character in input: '\' (ASCII=92) state=1
Решается отключением 3 видов магических кавычек (не пробовал)
magic_quotes_gpc Off
magic_quotes_runtime Off
magic_quotes_sybase Off
Еще советуют в bootstrap.php
вынести в начало файла:
set_magic_quotes_runtime(0);
ini_set('magic_quotes_gpc', 0);
ini_set('magic_quotes_sybase', 0);
ini_set('magic_quotes_runtime', 0);
но мне не помогло.
В примере нужно собрать массив sql-запросов из файла дампа sql.
<?php
function remove_comments(&$output) {
$lines = explode("\n", $output);
$output = "";
$linecount = count($lines);
$in_comment = false;
for($i = 0; $i < $linecount; $i++) {
if( preg_match("/^\/\*/", preg_quote($lines[$i])) ) {
$in_comment = true;
}
if( !$in_comment ) {
$output .= $lines[$i] . "\n";
}
if( preg_match("/\*\/$/", preg_quote($lines[$i])) ) {
$in_comment = false;
}
}
unset($lines);
return $output;
}
function remove_remarks($sql) {
$lines = explode("\n", $sql);
$sql = "";
$linecount = count($lines);
$output = "";
for ($i = 0; $i < $linecount; $i++) {
if (($i != ($linecount - 1)) || (strlen($lines[$i]) > 0)) {
if ($lines[$i][0] != "#") {
$output .= $lines[$i] . "\n";
}
else {
$output .= "\n";
}
$lines[$i] = "";
}
}
return $output;
}
function split_sql_file($sql, $delimiter) {
$tokens = explode($delimiter, $sql);
$sql = "";
$output = array();
$matches = array();
$token_count = count($tokens);
for ($i = 0; $i < $token_count; $i++) {
if (($i != ($token_count - 1)) || (strlen($tokens[$i] > 0))) {
$total_quotes = preg_match_all("/'/", $tokens[$i], $matches);
$escaped_quotes = preg_match_all("/(?<!\\\\)(\\\\\\\\)*\\\\'/", $tokens[$i], $matches);
$unescaped_quotes = $total_quotes - $escaped_quotes;
if (($unescaped_quotes % 2) == 0) {
$output[] = $tokens[$i];
$tokens[$i] = "";
}
else {
$temp = $tokens[$i] . $delimiter;
$tokens[$i] = "";
$complete_stmt = false;
for ($j = $i + 1; (!$complete_stmt && ($j < $token_count)); $j++) {
$total_quotes = preg_match_all("/'/", $tokens[$j], $matches);
$escaped_quotes = preg_match_all("/(?<!\\\\)(\\\\\\\\)*\\\\'/", $tokens[$j], $matches);
$unescaped_quotes = $total_quotes - $escaped_quotes;
if (($unescaped_quotes % 2) == 1) {
$output[] = $temp . $tokens[$j];
$tokens[$j] = "";
$temp = "";
$complete_stmt = true;
$i = $j;
}
else {
$temp .= $tokens[$j] . $delimiter;
$tokens[$j] = "";
}
}
}
}
}
return $output;
}
?>
Использование, учитывая что $ungzdata
— текст из файла sql-дампа.
$SQL=array();
$SQL=remove_comments($ungzdata);
$SQL=remove_remarks($SQL);
$SQL=split_sql_file($SQL,";");
В примере у input id в формате inp1
по порядку.
if($matchcount=preg_match_all('@value="([^"]*)"@',$email_content_text,$m)){
for($i=0;$i<=$matchcount;$i++){
$email_content_text=preg_replace('/<input id="inp'.$i.'"[^>]*>/is',$m[1][$i],$email_content_text);
}
}
Обновлено: чтобы не обязательно нужно было указывать id у input, но первый атрибут должен быть value, т.е <input value="1" type="text"…
if($matchcount=preg_match_all('@value="([^"]*)"@',$email_content_text,$m)){
for($i=0;$i<=$matchcount;$i++){
$email_content_text=preg_replace('/<input value="'.$m[1][$i].'"[^>]*>/is',$m[1][$i],$email_content_text);
}
}
Понадобилось при отправке заполненной формы на почту.
В примере подразумевается что в форме 1 input.
if(preg_match('@value="([^"]*)"@', $email_content_text, $m)){
$email_content_text = preg_replace('/<input[^>]*>/is', $m[1], $email_content_text);
}