File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+ require_once __DIR__ . '/../autoload.php ' ;
3+
4+ use Qiniu \Auth ;
5+ use Qiniu \Processing \PersistentFop ;
6+
7+ $ accessKey = 'Access_Key ' ;
8+ $ secretKey = 'Secret_Key ' ;
9+ $ auth = new Auth ($ accessKey , $ secretKey );
10+
11+ //要持久化处理的文件所在的空间和文件名。
12+ $ bucket = 'Bucket_Name ' ;
13+
14+ //持久化处理使用的队列名称。 https://portal.qiniu.com/mps/pipeline
15+ $ pipeline = 'pipeline_name ' ;
16+
17+ //持久化处理完成后通知到你的业务服务器。
18+ $ notifyUrl = 'http://375dec79.ngrok.com/notify.php ' ;
19+ $ pfop = new PersistentFop ($ auth , $ bucket , $ pipeline , $ notifyUrl );
20+
21+ $ id = "z2.5955c739e3d0041bf80c9baa " ;
22+ //查询持久化处理的进度和状态
23+ list ($ ret , $ err ) = $ pfop ->status ($ id );
24+ echo "\n====> pfop avthumb status: \n" ;
25+ if ($ err != null ) {
26+ var_dump ($ err );
27+ } else {
28+ var_dump ($ ret );
29+ }
You can’t perform that action at this time.
0 commit comments