Go 是由 Google 設計的一門靜態類型的編譯型語言。它有點相似於 C,可是它包含了更多的優勢,好比垃圾回收、內存安全、結構類型和併發性。它的併發機制使多核和網絡機器可以發揮最大的做用。這是 GoLang 的最佳賣點之一。此外,Go 速度快,表現力強,乾淨且高效。這也是 Go 如此吸引開發者學習的緣由。node
PHP 是一種動態類型語言,它使新手更容易編寫代碼。如今的問題是,PHP 開發人員可否從動態類型語言切換到像 Go 這樣的靜態類型語言?爲了找到答案,讓咱們對比一下 Go 和 PHP 之間的語法差別。linux
八重櫻:怎麼從一名碼農成爲架構師的必看知識點:目錄大全(不按期更新)數組
object
的 struct
類型。PHP 數據類型:安全
boolean
string
integer // Signed integer, PHP does not support unsigned integers.
float (also known as "floats", "doubles", or "real numbers")
array
object
null
resource
Go 數據類型:網絡
string
bool
int int8 int16 int32 int64 // Signed integer
uint uint8 uint16 uint32 uint64 uintptr // Unsigned integers
byte // alias for uint8
rune // alias for int32
float32 float64
complex64 complex128
array
slices
map
struct
Go 使用 var
聲明全局變量和函數變量。可是,它也支持帶有初始化程序的簡寫語法,但只能在函數內部使用。另外一方面,PHP 僅支持帶有初始化程序的變量聲明。架構
// 變量聲明
// Go // PHP
var i int $i = 0 // integer
var f float64 $f = 0.0 // float
var b bool $b = false // boolean
var s string $s = "" // string
var a [2]string $a = [] // array
// 簡短的變量聲明
// Go // PHP
i := 0 $i = 0 // integer
f := 0.0 $f = 0.0 // float
b := false $b = false // boolean
s := "" $s = "" // string
a := [1]string{"hello"} $a = [] // array
// Go
i := 42 // Signed integer
f := float64(i) // Float
u := uint(f) // Unsigned integer
// PHP
$i = 1;
$f = (float) $i; // 1.0
$b = (bool) $f // true
$s = (string) $b // "1"
// Go
var a [2]string
a[0] = "Hello"
a[1] = "World"
// OR
a := [2]string{"hello", "world"}
// PHP
$a = [
"hello",
"world"
];
// Go
m := map[string]string{
"first_name": "Foo",
"last_name": "Bar",
}
// PHP
$m = [
"first_name" => "Foo",
"last_name" => "Bar"
];
Go 不支持對象。可是,您可使用 structs
實現 object
之類的語法。併發
// Go
package main
import "fmt"
type Person struct {
Name string
Address string
}
func main() {
person := Person{"Foo bar", "Sydney, Australia"}
fmt.Println(person.Name)
}
// PHP
$person = new stdClass;
$person->Name = "Foo bar";
$person->Address = "Sydney, Australia";
echo $person->Name;
// 或使用類型轉換
$person = (object) [
'Name' => "Foo bar",
'Address' => "Sydney, Australia"
];
echo $person->Name;
Go 和 PHP 函數之間的主要區別是; Go 函數能夠返回任意數量的結果,而 PHP 函數只能返回一個結果。可是,PHP 能夠經過返回數組來模擬相同的功能。svg
// Go
package main
import "fmt"
func fullname(firstName string, lastName string) (string) {
return firstName + " " + lastName
}
func main() {
name := fullname("Foo", "Bar")
fmt.Println(name)
}
// PHP
function fullname(string $firstName, string $lastName) : string {
return $firstName . " " . $lastName;
}
$name = fullname("Foo", "Bar");
echo $name;
// 返回多個結果
// Go
package main
import "fmt"
func swap(x, y string) (string, string) {
return y, x
}
func main() {
a, b := swap("hello", "world")
fmt.Println(a, b)
}
// PHP
// 返回一個數組以得到多個結果
function swap(string $x, string $y): array {
return [$y, $x];
}
[$a, $b] = swap('hello', 'world');
echo $a, $b;
// Go
package main
import (
"fmt"
)
func compare(a int, b int) {
if a > b {
fmt.Println("a is bigger than b")
} else {
fmt.Println("a is NOT greater than b")
}
}
func main() {
compare(12, 10);
}
// PHP
function compare(int $a, int $b) {
if ($a > $b) {
echo "a is bigger than b";
} else {
echo "a is NOT greater than b";
}
}
compare(12, 10);
根據 Golang 官方教程文檔:函數
Go 的 switch 與 C,C+,Java,JavaScript 和 PHP 中的相似,除了 Go 只運行選中的 case,而不是隨後的全部 case。 實際上,
break
語句在這些語言中的每一個 case 後都是必需的,而在 Go 中則是自動補充的。另外一個重要的區別是 Go 的 switch cases 不須要是常量,而且涉及的值也沒必要是整數。
// Go
package main
import (
"fmt"
"runtime"
)
func main() {
fmt.Print("Go runs on ")
os := runtime.GOOS;
switch os {
case "darwin":
fmt.Println("OS X.")
case "linux":
fmt.Println("Linux.")
default:
fmt.Printf("%s.\n", os)
}
}
// PHP
echo "PHP runs on ";
switch (PHP_OS) {
case "darwin":
echo "OS X.";
break;
case "linux":
echo "Linux.";
break;
default:
echo PHP_OS;
}
For 循環學習
// Go
package main
import "fmt"
func main() {
sum := 0
for i := 0; i < 10; i++ {
sum += i
}
fmt.Println(sum)
}
// PHP
$sum = 0;
for ($i = 0; $i < 10; $i++) {
$sum += $i;
}
echo $sum;
Go 自身沒有 while 循環的語法。相應的,Go 使用 for
循環代替實現 while 循環.
// Go
package main
import "fmt"
func main() {
sum := 1
for sum < 100 {
sum += sum
}
fmt.Println(sum)
}
// PHP
$sum = 1;
while ($sum < 100) {
$sum += $sum;
}
echo $sum;
PHP 使用 foreach
迭代數組和對象。與之對應,Go 使用 range
迭代 slice 或 map。
// Go
package main
import "fmt"
func main() {
colours := []string{"Maroon", "Red", "Green", "Blue"}
for index, colour := range colours {
fmt.Printf("index: %d, colour: %s\n", index, colour)
}
}
// PHP
$colours = ["Maroon", "Red", "Green", "Blue"];
foreach($colours as $index => $colour) {
echo "index: {$index}, colour: {$colour}\n";
}
今天的內容就是這些。我儘可能使文章篇幅較小且簡潔。做爲 PHP 開發人員, 我嘗試在練習 Go 時分享個人知識。也請隨意分享你的想法。但願大家喜歡閱讀本篇文章。