1. Go to this page and download the library: Download futuretek/yii2-api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
futuretek / yii2-api example snippets
public function init()
{
$this->setIdentity(UserModel);
parent::init();
}
public function actions()
{
return [
...,
'myAction' => [
'class' => 'futuretek\api\ApiAction',
],
...,
];
}
/**
* Returns hello and the name that you gave
*
* @param string $name Your name
* @return string
* @api
*/
public function getHello($name)
{
return ['hello' => 'Hello ' . $name];
}