本文整理汇总了PHP中Sample::get_id方法的典型用法代码示例。如果您正苦于以下问题:PHP Sample::get_id方法的具体用法?PHP Sample::get_id怎么用?PHP Sample::get_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sample
的用法示例。
在下文中一共展示了Sample::get_id方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: idOfNameShouldBe
/**
* @Then id of name :arg1 should be :arg2
*/
public function idOfNameShouldBe($arg1, $arg2)
{
$data = new Sample();
$rows = $data->get_id($arg1);
// print_r( $rows);
if (sizeof($rows) != 1) {
throw new Exception("ID is not present.\n");
} else {
if ($rows[0]['id'] != $arg2) {
throw new Exception("ID did not match.\n");
}
}
}
示例2: Sample
<?php
error_reporting(-1);
ini_set('display_errors', 1);
echo '
<html>
<head><title>Sample Page</title></head>
<body>';
echo '<h1>Sample Page Headline</h1>';
// phpinfo();
include_once 'Sample.php';
$sample = new Sample();
$sample->init();
$sample->set('Tom', 10);
$sample->set('Joe', 20);
$sample->set('Che', 30);
$names = $sample->get_name(10);
echo "<p>ID: {$names[0]['id']} Name: {$names[0]['name']}</p>";
$names = $sample->get_name(30);
echo "<p>ID: {$names[0]['id']} Name: {$names[0]['name']}</p>";
$ids = $sample->get_id('Joe');
echo "<p>ID: {$ids[0]['id']} Name: {$ids[0]['name']}</p>";
echo '</body></html>';