函数
最后更新于:2022-04-02 02:33:12
[TOC]
## 示例
### 输出函数
```
void example1();
void example2(Php::Parameters ¶ms);
Php::Value example3();
Php::Value example4(Php::Parameters ¶ms);
```
### 返回值
Php:Value 表示数字变量以及字符串以及数组和对象
```
Php::Value myFunction()
{
if (rand() % 2 == 0)
{
return "string";
}
else
{
return 123;
}
}
```
```
';