本文整理汇总了PHP中Robots类的典型用法代码示例。如果您正苦于以下问题:PHP Robots类的具体用法?PHP Robots怎么用?PHP Robots使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Robots类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _executeTestsNormal
protected function _executeTestsNormal($di)
{
$robot = new Robots();
$success = $robot->save(array('type' => 'mechanical', 'year' => 2018));
$this->assertEquals($success, false);
$this->assertEquals($robot->type, 'mechanical');
$this->assertEquals($robot->year, 2018);
$robot = new Robots();
$robot->assign(array('type' => 'mechanical', 'year' => 2018));
$this->assertEquals($robot->type, 'mechanical');
$this->assertEquals($robot->year, 2018);
//not assigns nonexistent fields
$robot = new Robots();
$robot->assign(array('field1' => 'mechanical', 'field2' => 2018));
$this->assertEquals(empty($robot->field1), true);
$this->assertEquals(empty($robot->field2), true);
//white list
$robot = new Robots();
$robot->assign(array('type' => 'mechanical', 'year' => 2018), null, array('type'));
$this->assertEquals($robot->type, 'mechanical');
$this->assertEquals(empty($robot->year), true);
//white list
$robot = new Robots();
$robot->assign(array('typeFromClient' => 'mechanical', 'yearFromClient' => 2018), array('typeFromClient' => 'type', 'yearFromClient' => 'year'), array('type'));
$this->assertEquals($robot->type, 'mechanical');
$this->assertEquals(empty($robot->year), true);
}
示例2: findByRawSql
public static function findByRawSql($conditions, $params = null)
{
// A raw SQL statement
$sql = "SELECT * FROM robots WHERE {$conditions}";
// Base model
$robot = new Robots();
// Execute the query
return new Resultset(null, $robot, $robot->getReadConnection()->query($sql, $params));
}
示例3: findByCreateInterval
public static function findByCreateInterval()
{
// A raw SQL statement
$sql = "SELECT * FROM robots WHERE id > 0";
// Base model
$robot = new Robots();
// Execute the query
return new Resultset(null, $robot, $robot->getReadConnection()->query($sql));
}
示例4: testTest
/**
* @covers itseo\test\Robots::test
* @todo Implement testTest().
*/
public function testTest()
{
$dummy_target = "http://www.google.es/";
$result = $this->object->test($dummy_target);
$this->assertArrayHasKey("name", $result);
$this->assertArrayHasKey("score", $result);
$this->assertArrayHasKey("total_score", $result);
$this->assertArrayHasKey("result", $result);
$this->assertEquals("robots", $result['name']);
}
示例5: _executeTestsNormal
protected function _executeTestsNormal($di)
{
$robot = new Robots();
$success = $robot->save(array('type' => 'mechanical', 'year' => 2018));
$this->assertEquals($success, false);
$this->assertEquals($robot->type, 'mechanical');
$this->assertEquals($robot->year, 2018);
$robot = new Robots();
$robot->assign(array('type' => 'mechanical', 'year' => 2018));
$this->assertEquals($robot->type, 'mechanical');
$this->assertEquals($robot->year, 2018);
}
示例6: create
public static function create($data)
{
$response = new Response();
try {
$data = json_decode($data, true);
/** @var Robots $robot */
$robot = new Robots();
$robot->setAttributes($data);
$response->data = $robot->create();
$response->status = $response::STATUS_CREATED;
} catch (Exception $e) {
$response->setException($e);
} finally {
return $response->toArray();
}
}
示例7: testSerialize
public function testSerialize()
{
$this->_prepareDI();
$robot = Robots::findFirst();
$serialized = serialize($robot);
$robot = unserialize($serialized);
$this->assertTrue($robot->save());
}
示例8: findAction
public function findAction()
{
$robots = $this->demoModel->find(array("conditions" => "id >= :id:", "columns" => "id, username,password", "order" => "username DESC", "offset" => 0, "limit" => 10, "group" => "id, username", "bind" => array("id" => 1)));
dump($robots->toArray());
exit;
// 也可以这样
$robots = Robots::query()->where("type = :type:")->andWhere("year < 2000")->bind(array("type" => "mechanical"))->order("name")->execute();
// 单条记录
$data = $this->demoModel->findFirst();
}
示例9: saveAction
public function saveAction()
{
$this->db->begin();
$robot = new Robots();
$robot->name = "WALL·E";
$robot->created_at = date("Y-m-d");
if ($robot->save() == false) {
$this->db->rollback();
return;
}
$robotPart = new RobotParts();
$robotPart->robots_id = $robot->id;
$robotPart->type = "head";
if ($robotPart->save() == false) {
$this->db->rollback();
return;
}
$this->db->commit();
}
示例10: testCacheResultsetBinding
public function testCacheResultsetBinding()
{
$cache = $this->_getCache();
$initialId = 0;
$finalId = 4;
$cache->save('test-resultset', Robots::find(array('conditions' => 'id > :id1: and id < :id2:', 'bind' => array('id1' => $initialId, 'id2' => $finalId), 'order' => 'id')));
$this->assertTrue(file_exists(__DIR__ . '/cache/test-resultset'));
$robots = $cache->get('test-resultset');
$this->assertEquals(get_class($robots), 'Phalcon\\Mvc\\Model\\Resultset\\Simple');
$this->assertEquals(count($robots), 3);
$this->assertEquals($robots->count(), 3);
}
示例11: testSelectBasic
/**
* Tests an image tag with a bare minimum of information passed
*
* @author Nikos Dimopoulos <nikos@niden.net>
* @since 2012-09-09
*/
public function testSelectBasic()
{
// Populate the table
// Empty the relationship table first
$this->emptyTable('robots_parts');
$this->populateTable('robots');
$this->populateTable('robots_parts');
$robots = \Robots::find();
$params = array('some_name', $robots, 'using' => array('id', 'name'));
$expected = '<select id="some_name" name="some_name">' . PHP_EOL . chr(9) . '<option value="1">Robotina</option>' . PHP_EOL . chr(9) . '<option value="2">Astro Boy</option>' . PHP_EOL . chr(9) . '<option value="3">Terminator</option>' . PHP_EOL . '</select>';
$actual = PhTag::select($params);
$this->assertEquals($expected, $actual, sprintf($this->message, 'select basic'));
}
示例12: testSerialize
public function testSerialize()
{
require 'unit-tests/config.db.php';
if (empty($configMysql)) {
$this->markTestSkipped('Test skipped');
return;
}
$this->_prepareDI();
$robot = Robots::findFirst();
$serialized = serialize($robot);
$robot = unserialize($serialized);
$this->assertTrue($robot->save());
}
示例13: _executeTestsNormal
protected function _executeTestsNormal($di)
{
$robot = Robots::findFirstById(1);
$this->assertEquals(get_class($robot), 'Robots');
$this->assertEquals($robot->id, 1);
$robot = Robots::findFirstById(2);
$this->assertEquals(get_class($robot), 'Robots');
$this->assertEquals($robot->id, 2);
$robots = Robots::findByType('mechanical');
$this->assertEquals(count($robots), 2);
$this->assertEquals($robots[0]->id, 1);
$number = Robots::countByType('mechanical');
$this->assertEquals($number, 2);
}
示例14: testCacheResultsetNormal
public function testCacheResultsetNormal()
{
require 'unit-tests/config.db.php';
if (empty($configMysql)) {
$this->markTestSkipped('Test skipped');
return;
}
$cache = $this->_getCache();
$cache->save('test-resultset', Robots::find(array('order' => 'id')));
$this->assertTrue(file_exists('unit-tests/cache/test-resultset'));
$robots = $cache->get('test-resultset');
$this->assertEquals(get_class($robots), 'Phalcon\\Mvc\\Model\\Resultset\\Simple');
$this->assertEquals(count($robots), 3);
$this->assertEquals($robots->count(), 3);
}
示例15: getAnalyzer
/**
* Getting crowler
* @param string $url
* @return boolean|\Crowler
*/
public static function getAnalyzer($url)
{
// Check is robots allowed
if (!Robots::robots_allowed($url, Config::$agent_name)) {
Providers::change_url_status($url, Providers::URLS_TYPE_ROBOTS_NOT_ALLOWED);
_w('Robots not allowed');
return false;
}
// Create object
$obj = new ContentAnalyzer($url);
if (!$obj->getCONTENT_DATA()) {
Providers::change_url_status($url, Providers::URLS_TYPE_ERROR_NO_DATA);
return false;
}
return $obj;
}