persistent_fop_status.php 305B

12345678910111213
  1. <?php
  2. require_once __DIR__ . '/../autoload.php';
  3. use Qiniu\Processing\PersistentFop;
  4. // 触发持久化处理后返回的 Id
  5. $persistentId = 'z0.564d5f977823de48a85ece59';
  6. // 通过persistentId查询该 触发持久化处理的状态
  7. $status = PersistentFop::status($persistentId);
  8. var_dump($status);