예제 #1
0
파일: Row.php 프로젝트: AttilaJenei/Seek-R
 /**
  * __toString
  *
  * @return string
  */
 public final function __toString()
 {
     return 'Row: ' . (empty($this->_table) ? 'Table not specified' : $this->_table->getName()) . "\n\tData: " . str_replace("\n", "\n\t", print_r($this->_data, true)) . "\n";
 }