ftp_alloc() 为要上传到 FTP 服务器的文件分配空间。 <br />ftp_cdup() 把当前目录改变为 FTP 服务器上的父目录。 <br />ftp_chdir() 改变 FTP 服务器上的当前目录。 <br />ftp_chmod() 通过 FTP 设置文件上的权限。 <br />ftp_close() 关闭 FTP 连接。 <br />ftp_connect() 打开 FTP 连接。 <br />ftp_delete() 删除 FTP 服务器上的文件。 <br />ftp_exec() 在 FTP 上执行一个程序/命令。 <br />ftp_fget() 从FTP服务器上下载一个文件并保存到本地一个已经打开的文件中<br />ftp_fput() 上传一个已打开的文件,并在 FTP 服务器上把它保存为一个文件<br />ftp_get_option() 返回当前 FTP 连接的各种不同的选项设置。 <br />ftp_get() 从 FTP 服务器下载文件。 <br />ftp_login() 登录 FTP 服务器。 <br />ftp_mdtm() 返回指定文件的最后修改时间。 <br />ftp_mkdir() 在 FTP 服务器创建一个新目录。 <br />ftp_nb_continue() 连续获取/发送文件 (non-blocking)。 <br />ftp_nb_fget() <br /> 从FTP服务器上下载文件并保存到本地已经打开的文件中(non-blocking)<br />ftp_nb_fput() <br /> 上传已打开的文件,并在FTP服务器上把它保存为文件(non-blocking)。 <br />ftp_nb_get() 从 FTP 服务器下载文件 (non-blocking)。<br />ftp_nb_put() 把文件上传到服务器 (non-blocking)。 <br />ftp_nlist() 返回指定目录的文件列表。 <br />ftp_pasv() 返回当前 FTP 被动模式是否打开。 <br />ftp_put() 把文件上传到服务器。 <br />ftp_pwd() 返回当前目录名称。 <br />ftp_quit() ftp_close() 的别名。 <br />ftp_raw() 向 FTP 服务器发送一个 raw 命令。 <br />ftp_rawlist() 返回指定目录中文件的详细列表。 <br />ftp_rename() 重命名 FTP 服务器上的文件或目录。 <br />ftp_rmdir() 删除 FTP 服务器上的目录。 <br />ftp_set_option() 设置各种 FTP 运行时选项。 <br />ftp_site() 向服务器发送 SITE 命令。 <br />ftp_size() 返回指定文件的大小。<br />ftp_ssl_connect() 打开一个安全的 SSL-FTP 连接。 <br />ftp_systype() 返回远程 FTP 服务器的系统类型标识符。<br /><br /><br />class FTPUtil {<br /><br /> public $off; // 返回操作状态(成功/失败)<br /> public $conn_id; // FTP连接<br /><br /> /**<br /> * 方法:FTP连接<br /> * @FTP_HOST -- FTP主机<br /> * @FTP_PORT -- 端口<br /> * @FTP_USER -- 用户名<br /> * @FTP_PASS -- 密码<br /> */<br /> function __construct($FTP_HOST, $FTP_PORT, $FTP_USER, $FTP_PASS) {<br /> $this->conn_id = @ftp_connect($FTP_HOST, $FTP_PORT) or die ('FTP服务器连接失败');<br /><br /> @ftp_login($this->conn_id, $FTP_USER, $FTP_PASS) or die('FTP服务器登录失败');<br /> @ftp_pasv($this->conn_id, 1);// 打开被动模拟<br /> }<br /><br /> /**<br /> * 方法:上传文件<br /> * @path -- 本地路径<br /> * @newPath -- 上传路径<br /> * @type -- 若目标目录不存在则新建<br /> */<br /> function up_file($path, $newPath, $type = true) {<br /> if ($type) {<br /> $this->dir_mkdirs($newPath);<br /> }<br /><br /> $this->off = @ftp_put($this->conn_id, $newPath, $path, FTP_BINARY);<br /> if (!$this->off) {<br /> echo '文件上传失败,请检查权限及路径是否正确!';<br /> }<br /> }<br /><br /> /**<br /> * 方法:移动文件<br /> * @path -- 原路径<br /> * @newPath -- 新路径<br /> * @type -- 若目标目录不存在则新建<br /> */<br /> function move_file($path, $newPath, $type = true) {<br /> if ($type) {<br /> $this->dir_mkdirs($newPath);<br /> }<br /><br /> $this->off = @ftp_rename($this->conn_id, $path, $newPath);<br /> if (!$this->off) {<br /> echo "文件移动失败,请检查权限及原路径是否正确!";<br /> }<br /> }<br /><br /> /**<br /> * 方法:复制文件<br /> * 说明:由于FTP无复制命令,本方法变通操作为:下载后再上传到新的路径<br /> * @path -- 原路径<br /> * @newPath -- 新路径<br /> * @type -- 若目标目录不存在则新建<br /> */<br /> function copy_file($path, $newPath, $type = true) {<br /> $downPath = "c:/tmp.dat";<br /><br /> $this->off = @ftp_get($this->conn_id, $downPath, $path, FTP_BINARY);// 下载<br /> if (!$this->off) {<br /> echo "文件复制失败,请检查权限及原路径是否正确!";<br /> }<br /> $this->up_file($downPath, $newPath, $type);<br /> }<br /><br /> /**<br /> * 方法:删除文件<br /> * @path -- 路径<br /> */<br /> function del_file($path) {<br /> $this->off = @ftp_delete($this->conn_id, $path);<br /> if (!$this->off) {<br /> echo "文件删除失败,请检查权限及路径是否正确!";<br /> }<br /> }<br /><br /> /**<br /> * 方法:生成目录<br /> * @path -- 路径<br /> */<br /> function dir_mkdirs($path) {<br /> $path_arr = explode('/', $path); // 取目录数组<br /> $file_name = array_pop($path_arr); // 弹出文件名<br /> $path_div = count($path_arr); // 取层数<br /><br /> foreach ($path_arr as $val) { // 创建目录<br /> if (@ftp_chdir($this->conn_id, $val) == FALSE) {<br /> $tmp = @ftp_mkdir($this->conn_id, $val);<br /> if ($tmp == FALSE) {<br /> echo "目录创建失败,请检查权限及路径是否正确!";<br /> exit;<br /> }<br /> @ftp_chdir($this->conn_id, $val);<br /> }<br /> }<br /><br /> for ($i = 1; $i <= $path_div; $i++) { // 回退到根<br /> @ftp_cdup($this->conn_id);<br /> }<br /> }<br /><br /> /**<br /> * 方法:关闭FTP连接<br /> */<br /> function close() {<br /> @ftp_close($this->conn_id);<br /> }

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
