选择语言 :

 Module_Database_Result::offsetSet

Implements [ArrayAccess::offsetSet], throws an error.

You cannot modify a database result.
void Module_Database_Result::offsetSet( )
throws
Exception
返回值
  • void
File: ./modules/database/result.class.php
final public function offsetSet($offset, $value)
{
    throw new Exception('Database results are read-only');
}