官方網站
前置作業
在安裝之前,請先確認沒有其他程序(例如:Apache 或 Nginx)占用了本地機器的 80 連接埠。
- 安裝或更新 Homebrew 至最新版本:
brew update
- 安裝 PHP 7.1:
brew install homebrew/php/php71
- 安裝 Composer:
brew install composer
A simple life in a modern world.
在安裝之前,請先確認沒有其他程序(例如:Apache 或 Nginx)占用了本地機器的 80 連接埠。
brew update
brew install homebrew/php/php71
brew install composer
bool copy ( string $source , string $dest [, resource $context ] )
[php]
<?php
// 檔案複製到 folder 目錄下, 並更名為 example-1.txt
if ( copy("example.txt", "/folder/example-1.txt") )
{
// 複製檔案成功
}
else
{
// 複製檔案失敗
}
?>
[/php]
bool rename ( string $oldname , string $newname [, resource $context ] )
[php]
<?php
// 檔案更名為 newfile.ext
rename("file.ext", "newfile.ext");
// 不同路徑, 移動檔案
rename("file.ext", "/folder/file.ext");
// 不同路徑, 移動檔案並更名
rename("file.ext", "/folder/newfile.ext");
?>
[/php]
bool unlink ( string $filename [, resource $context ] )
[php]
<?php
if ( unlink("example.txt") )
{
// 刪除檔案成功
}
else
{
// 刪除檔案失敗
}
?>
[/php]
Expression | gettype() | empty() | is_null() | isset() | boolean: if($x) |
---|---|---|---|---|---|
$x = “”; | string | TRUE | FALSE | TRUE | FALSE |
$x = null; | NULL | TRUE | TRUE | FALSE | FALSE |
var $x; | NULL | TRUE | TRUE | FALSE | FALSE |
$x is undefined | NULL | TRUE | TRUE | FALSE | FALSE |
$x = array(); | array | TRUE | FALSE | TRUE | FALSE |
$x = array(‘a’, ‘b’); | array | FALSE | FALSE | TRUE | TRUE |
$x = false; | boolean | TRUE | FALSE | TRUE | FALSE |
$x = true; | boolean | FALSE | FALSE | TRUE | TRUE |
$x = 1; | integer | FALSE | FALSE | TRUE | TRUE |
$x = 42; | integer | FALSE | FALSE | TRUE | TRUE |
$x = 0; | integer | TRUE | FALSE | TRUE | FALSE |
$x = -1; | integer | FALSE | FALSE | TRUE | TRUE |
$x = “1”; | string | FALSE | FALSE | TRUE | TRUE |
$x = “0”; | string | TRUE | FALSE | TRUE | FALSE |
$x = “-1”; | string | FALSE | FALSE | TRUE | TRUE |
$x = “php”; | string | FALSE | FALSE | TRUE | TRUE |
$x = “true”; | string | FALSE | FALSE | TRUE | TRUE |
$x = “false”; | string | FALSE | FALSE | TRUE | TRUE |