如何在 php 中使用系统调用根据复选框选择连接文件
我在 php 中有一些文件,我需要在选择复选框的基础上进行连接。如果选择了一个复选框,则根据要求进行连接等等。我必须使用系统调用来完成此操作,并且我正在 php 和 ssh 中工作(安全外壳客户端)
I have some files in php ,i need to concatenate on basis of selection of checkboxes.if one checkbox is selected concatenate according to requirement and so on.this i have to do using system call ,and i'm working in php and ssh (secure shell client)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您将文件放入数组中,使用 HTML,如
您可以使用 php 访问选中的复选框,
您可能需要将实际路径放入二进制文件
touch
和cat
,具体取决于您的系统配置。我很想知道哪里需要通过系统调用来执行此操作,这些文件大吗?
Assuming you get files into an array, with HTML like
You can access checked checkboxed with php
You could need to put real path to binaries
touch
andcat
, depending on your system config.I'm curious to know where is the need to do this with system calls, is theses files big ?