菜鳥的php

菜鳥的php

最近碰到了一點php, 分享一下學習筆記, 不過不管是工作還是學習重心都還是放在前端, 所以內容真的都寫的很粗淺, 只是個出於興趣的學習筆記而已

使用

1
2
3
4
5
<?php 

//code...

?>

變數

1
$name = value;

function

1
2
3
4
function fnName($param) {
// do something with param...
return $param;
}

some string methods

strip_tags(string $str)

1
2
3
// strip all the html in this variable
//e.g. $inputTxt = "lisa<p>some thing here</p>", get rid of that p tag
$inputTxt = strip_tags($inputTxt);

str_replace(“ “, “”, string)

1
2
// str_replace = str.replace(" ", ""), 以空字串代替空白字元
$inputTxt = str_replace(" ", "", $inputTxt);

strtolower($inputTxt)

1
2
// 字串轉為全小寫
$inputTxt = strtolower(string)

ucfirst(string)

1
2
// 首字大寫
$inputTxt = ucfirst(string)

strlen(string)

回傳字串長度

1
2
$string = "hello";
strlen($string) // 5

Array()

在php中, array是一個函式

1
$array = array()

array_push(array, item)

推入陣列

1
2
$arrayA = array();
array_push($arrayA, item);

注意點:
在php中, 陣列的索引不一定要是數字, 也可以是字元, 感覺很像js的物件中鍵與值的關係?

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×