mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
24 lines
277 B
Markdown
24 lines
277 B
Markdown
# 类操作
|
|
|
|
## 加载类
|
|
|
|
```python
|
|
cls = phpy.Class("class_name")
|
|
```
|
|
|
|
## 读取类静态属性
|
|
```python
|
|
value = cls.get("name")
|
|
```
|
|
|
|
## 设置类静态属性
|
|
```python
|
|
cls.set("name", value)
|
|
```
|
|
|
|
## 创建一个实例
|
|
```python
|
|
object = cls.new(arg1, arg2, arg3, ...)
|
|
```
|
|
|