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


PHP FileMaker::listLayouts方法代码示例

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


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

示例1: FileMaker

 * 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 FMPHP_Sample database.
// Location of FileMaker Server is assumed to be on the same machine,
//  thus we assume hostspec is api default of 'http://localhost' as specified
//  in filemaker-api.php.
// If FMSA web server is on another machine, specify 'hostspec' as follows:
//   $fm = new FileMaker('FMPHP_Sample', 'http://10.0.0.1');
$fm = new FileMaker('FMPHP_Sample');
// Call listLayouts() to get array of layout names.
$layouts = $fm->listLayouts();
// If an error is found, return a message and exit.
if (FileMaker::isError($layouts)) {
    printf("Error %s: %s\n", $layouts->getCode());
    "<br>";
    printf($layouts->getMessage());
    exit;
}
// Print out layout names
foreach ($layouts as $layout) {
    echo $layout . "<br>";
}
?>
</body>
</html>
开发者ID:rjakes,项目名称:SimpleFM,代码行数:30,代码来源:listLayouts.php

示例2: testListLayouts

 /**
  * @covers \airmoi\FileMaker\FileMaker::listLayouts
  */
 public function testListLayouts()
 {
     $layouts = $this->fm->listLayouts();
     $this->assertTrue(in_array('sample', $layouts));
 }
开发者ID:airmoi,项目名称:filemaker,代码行数:8,代码来源:FileMakerTest.php


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