0

select_array() 的用法:

$value = array( 'username', 'email', 'firstname' );

$result = DB::select_array( $value ) ->from( 'user' ) ->where( 'userid', '=', '1' ) ->execute() ->as_array();

print_r( $result[0] );
4

1 回答 1

1

试试这个可能对你有帮助。

$value = array( 
              array('username', 'uname'), 
              array('email', 'mail'), 
              array('firstname', 'fname') 
         );

DB::select_array( $value ) 
        ->from( 'user' ) 
        ->where( 'userid', '=', '1' ) 
        ->execute() 
        ->as_array();

看看select_array

于 2013-08-27T05:40:07.067 回答