echo $a_row;
echo "$a_row";
$words = array( 'привет' => 'здарова', 'здарова' => 'привет' );
привет=здарова здарова=привет
<?php $content = str_replace("\r\n","\n",file_get_contents('1.txt')); $tmp_array = explode("\n",$content); foreach ($tmp_array as $value){ $a = explode("=",$value); $array[$a[0]] = $a[1]; } print_r($array); ?>
preg_match_all('#([^=\n\r]*)=([^\r\n]*)#',file_get_contents('путь к файлу.txt'),$m); $out=array_combine($m[1],$m[2]); print_r($out);
array(array(array(....,...)),array(...),array(..))
WARNING: touch() [<a href='function.touch'>function.touch</a>]: Utime failed: Operation not permitted Line: 295 in file /home/httpd/vhosts/***.ru/httpdocs/***/***.php
@touch($this->_db_file, (time() - $this->_cache_lifetime + $this->_cache_reloadtime));