Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 763 Bytes

README.MD

File metadata and controls

20 lines (19 loc) · 763 Bytes

说明

  1. 原始代码源于优酷开放平台的上传 PHP SDK,原版本最后更新日期 2013-12-09官方链接
  2. 原官方代码存在问题,这里仅对自己在使用过程中遇到的问题做出错误修正维护,不代表官方。
  3. 核心类添加方法 getVideoId,以方便在上传结束后通过公开方法得到视频地址参数。

补充,Nginx+PHP上传文件参数配置

优酷允许上传最大限制是1G,根据该要求,可以如下配置

Nginx设置 nginx.conf文件

http项内添加

  client_max_body_size 1024M

PHP中设置php.ini

  post_max_size 1024m
  upload_max_filesize 1024m
  max_execution_time 600
  max_input_time 600
  memory_limit 128M