本文整理汇总了PHP中FileMaker::listDatabases方法的典型用法代码示例。如果您正苦于以下问题:PHP FileMaker::listDatabases方法的具体用法?PHP FileMaker::listDatabases怎么用?PHP FileMaker::listDatabases使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileMaker
的用法示例。
在下文中一共展示了FileMaker::listDatabases方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: FileMaker
* by implication, by FileMaker.
*
* Example PHP script to illustrate how to list databases on the server.
*
* Requirements:
* 1. Working FileMaker Server installation
* 2. 'FMPHP_Sample' database hosted in FileMaker Server
*
*/
// Include FileMaker API
require_once 'FileMaker.php';
// Create a new connection to server without specifying database or hostspec.
$fm = new FileMaker();
// Set 'hostspec' property using setProperty()
$fm->setProperty('hostspec', 'http://localhost');
$databases = $fm->listDatabases();
// If an error is found, return a message and exit.
if (FileMaker::isError($databases)) {
printf("Error %s: %s\n", $databases->getCode());
"<br>";
printf($databases->getMessage());
exit;
}
// Print out layout names
foreach ($databases as $db) {
echo "{$db}<br>";
}
?>
</body>
</html>
示例2: testListDatabases
/**
* @covers \airmoi\FileMaker\FileMaker::listDatabases
*/
public function testListDatabases()
{
$databases = $this->fm->listDatabases();
$this->assertTrue(is_array($databases));
$this->assertTrue(in_array($GLOBALS['DB_FILE'], $databases, 'Database ' . $GLOBALS['DB_FILE'] . ' is missing. Test can\'t run'));
}