PHP
安装composer getcomposer.org
PhpSpreadsheet Documentation
-
PHP 写入权限问题
php 中使用fwrite()无法写入文件,要检查文件是否权限不够。
解决办法:chmod -R 757 dir/ OR chmod 757 file
-
SCP
scp 是secure copy的简写.
4.1 从远处复制文件到本地目录
$scp remote_username@remote_ip:/remote_folder/file /local_folder/
4.2 从远处复制文件夹到本地
$scp -r remote_username@remote_ip:/remote_folder /local_folder/
4.3 上传本地文件到远程指定目录
$scp local_file remote_username@remote_ip:/remote_folder
4.4 上传本地目录到远程指定目录
$scp -r local_folder remote_username@remote_ip:/remote_folder
-
HTML中php代码被浏览器注释
打开Apache 的安装目录,在
apache\conf
下找到httpd.conf
配置文件,用记事本打开。
AddType application/x-httpd-php .html .htm
5.1 如果只想在一个HTML文件中包含和运行PHP脚本
<files index.html>
AddType application/x-httpd-php .html
</files>
注意:
html 文件必须放在Apache配置文件 httpd.conf
中DocumentRoot
指定的目录下,也就是虚拟主机环境下,否则无法运行。