本文整理汇总了PHP中Api::set_path方法的典型用法代码示例。如果您正苦于以下问题:PHP Api::set_path方法的具体用法?PHP Api::set_path怎么用?PHP Api::set_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Api
的用法示例。
在下文中一共展示了Api::set_path方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: make_api
public static function make_api()
{
$api = new Api('Cohen', 'hello_world', 'A demo function.');
$api->add_property('user_name', 'Your Name');
$api->set_path('cohen.php');
$apis = array();
$apis[] = $api;
$results = array('classname' => 'Cohen', 'apis' => $apis);
return $results;
}
示例2: Api
<?php
/**
* This is a demo class for
* @Author: Jingrong Tian (work_id_tjr@163.com)
* @DateTime: 2015-09-25 22:14:28
* @Description: Description
*/
/**
* Lode models.
*/
require_once '../model/api.php';
$test_api = new Api('Cohen', 'hello_world', 'A demo function');
$test_api->add_property('user_name', 'Your Name');
$test_api->set_path('../cohen.php');
?>
<div class="tab-pane" id="tab2">
<div class="page-header">
<h1>API</h1>
</div>
<h2><?php
echo $test_api->get_class_name() . '::' . $test_api->get_function_name();
?>
<small><?php
echo $test_api->get_description();
?>
</small></h2>
<section>
<form action="./controller/index.php" method="post" id="api-form-<?php
echo $test_api->get_class_name() . '-' . $test_api->get_function_name();
?>