Lines Matching refs:out
118 $out = "---";
120 $out .= "\n".$obj->_dumpIndexedArray($ar,0);
122 $out .= "\n".$obj->_dumpHashArray($ar,0);
124 $out .= "\n";
125 return $out;
171 $out = $this->_readVar($this->_Lines,$lines_read);
181 return $out;
228 $out = array();
229 $out[] = str_repeat(" ",$indent).substr($lines[$start_at],$indent);
235 $out[] = $lines[$i];
237 return $out;
288 $out = trim($block[0]);
289 if($out == "[]"){ return array(); }
290 $this->_unescapeString($out);
291 return $out;
304 $out = array();
312 $out[] = $this->_readVar($value_block,$li);
316 return $out;
328 $out = array();
351 $out[$key] = $value;
354 return $out;
389 $out = array();
391 $out[] = sizeof($var)==0 ? "[]" : "";
392 … $out[] = $this->_dumpIndexedArray($var,$indent); // indexove pole se tiskne se stejnym indentem
394 $out[] = "";
395 $out[] = $this->_dumpHashArray($var,$indent + 1);
397 $out[] = $this->_dumpString($var); // schvalne je vynechan $indent, ident je pred klicem
399 return join("\n",$out);
445 $out = array();
450 $out[] = $_prefix.substr($_dump,strlen($_prefix));
454 $out[] = $_prefix.substr($_dump,strlen($_prefix));
457 $out[] = $this->_dumpIndent($indent)."- ".$this->_dumpVar($_value,$indent + 2); // "- "
460 return join("\n",$out);
464 $out = array();
466 …$out[] = $this->_dumpIndent($indent).$this->_dumpString($_key).": ".$this->_dumpVar($_value,$inden…
468 return join("\n",$out);