17 lines
204 B
PHP
17 lines
204 B
PHP
<?php
|
|
/**
|
|
* 在线进制转换
|
|
*/
|
|
|
|
namespace plugin\dev\hex_convert;
|
|
|
|
use app\Plugin;
|
|
|
|
class App extends Plugin
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
return $this->view();
|
|
}
|
|
} |