摘要:
php中,字符串的連接是用 “.” $text = "hello,world"; $a = "LEO"; echo $a." ".$text; strlen()函數是獲取字符串的長度 echo strlen("Hello world!"); strlen() 常常用在循环和其他函数中,因为那时确定字 阅读全文
摘要:
define("LEO","歡迎來到PHP世界!"); function show(){ echo LEO; } show(); PHP中的常量默認是全局變量,可以在任何地方調用 define(name,value,true) 這個函數接收3個參數。最好一個參數表示是否區分大小寫(true不區分,f 阅读全文