当前位置: 首页>>代码示例>>PHP>>正文


PHP S::get方法代码示例

本文整理汇总了PHP中S::get方法的典型用法代码示例。如果您正苦于以下问题:PHP S::get方法的具体用法?PHP S::get怎么用?PHP S::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在S的用法示例。


在下文中一共展示了S::get方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testAssertElementHasNotText

 public function testAssertElementHasNotText()
 {
     S::get("/");
     $this->assertElementHasNotText("h1", "asdasdasdasd");
 }
开发者ID:martinsbalodis,项目名称:testcases-laravel,代码行数:5,代码来源:IntegrationTestCaseTest.php

示例2: testFormSubmit

 public function testFormSubmit()
 {
     S::get("/");
     S::click(".form-submit");
     $this->assertBodyHasText("You have arrived");
 }
开发者ID:martinsbalodis,项目名称:testcases-laravel,代码行数:6,代码来源:SimpleRemoteWebDriverTest.php

示例3: S

        $this->_data['data'] = $value;
    }
}
// Initialize S class
$app = new S();
$app->_initData();
// Assigned database connection
// created at step #3
$app->conn = $database;
/* STEP 5: SET CONTENT TYPE AS JSON */
header("Content-Type: application/json; charset=utf-8");
/* STEP 7: Allow access to API */
header("Access-Control-Allow-Origin: *");
$app->get('/test-json', function () use($app) {
    $variable = [1, 2, 3, 4, 4, 5, $app];
    // STEP: 6 Use json_encode() output as JSON format
    echo json_encode($variable);
});
$app->get('/user/:name', function ($name) use($app) {
    // $user = $app->conn->GetRow('select * from users where id = ?',[$id]);
    // $app->output($user);
    $sql = 'select * from users where name like ';
    $user = $app->conn->GetAll($sql, ['%' . $name . '%']);
    if ($user) {
        $app->message(count($user) . ' record(s) found.');
        $app->data($user);
    } else {
        $app->message('No record found', true);
    }
    $app->output();
    # Updating tables
开发者ID:nasrulhazim,项目名称:training-api-template,代码行数:31,代码来源:___backup.kuis.php

示例4: S

<?php

require 'Slim/Slim.php';
require 'app/libs/S.php';
\Slim\Slim::registerAutoloader();
$app = new S();
$app->hook('slim.before', function () use($app) {
    $app->response->header("Content-Type", "application/json; charset=utf-8");
});
$app->hook('slim.after', function () use($app) {
    $app->output();
});
$app->get('/', function () use($app) {
    $app->contents['messages'] = 'Welcome to S Web Services. Please provide application token to use the API.';
});
$app->run();
开发者ID:nasrulhazim,项目名称:training-api-template,代码行数:16,代码来源:__backup.php


注:本文中的S::get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。