php gearman文件上传
是否可以使用 gearman 上传文件? 再见。
Is it possible upload a file using gearman ?
Bye.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 gearman 上传文件? 再见。
Is it possible upload a file using gearman ?
Bye.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用标准 php 上传文件。将文件的字节读入变量并传递到服务器。
阅读文档。
Use standard php to upload the file. Read the bytes of the file into a variable and pass to the server.
Read the docs.
这使用 file_get_contents 读取文件,并将其传递给 GearmanClient 的 do() 方法。无需“上传”内容,它将传输给 gearman,并进一步传输给工人。
客户端.php
工作者.php
This reads the file using file_get_contents, it is passed on to the do() method of GearmanClient. There's no need to "upload" the content, it will be transmitted to gearman, and further to the worker.
client.php
worker.php