Skip to content

Instantly share code, notes, and snippets.

@phalcon
Created October 16, 2012 19:02
Show Gist options
  • Select an option

  • Save phalcon/3901267 to your computer and use it in GitHub Desktop.

Select an option

Save phalcon/3901267 to your computer and use it in GitHub Desktop.
<?php
/**
CREATE TABLE robots (
code int,
le_name varchar(100),
);
*/
class Robots extends Phalcon\Mvc\Model {
public function columnMap(){
return array(
'id' => 'code'
'name' => 'le_name'
);
}
}
Robots::find("id = 100");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment