mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
13 lines
305 B
PHP
13 lines
305 B
PHP
<?php
|
|
require_once __DIR__ . '/../autoload.php';
|
|
|
|
use Qiniu\Processing\PersistentFop;
|
|
|
|
// 触发持久化处理后返回的 Id
|
|
$persistentId = 'z0.564d5f977823de48a85ece59';
|
|
|
|
// 通过persistentId查询该 触发持久化处理的状态
|
|
$status = PersistentFop::status($persistentId);
|
|
|
|
var_dump($status);
|