<?php
/**型別轉換
*//*1.自由轉換*/
/*2.強制轉換:不改變原變數,生成新的變數*/
//轉換為字串:
/*$a=100;
$b=(string)$a;
var_dump($b);*/
//轉換為整型:
/*$c="2008中國";
$d=(int)$c;
var_dump($d);*/
//轉換為浮點型:(float)
設定型別:(直接改變原變數的型別)
/*$a='2008藍天';
settype($a,'int');
var_dump($a);//輸出:int 2008*/
/*4.具體轉換函式:
intval()轉換整型
floatval()轉換為浮點型
strval()轉換為浮點型
只針對標量型別:int float string bool
*//*$a='500';
$b=intval($a);
var_dump($b);//輸出:int 500*/
/*$a=500.56;
$b=strval($a);
var_dump($b);//輸出:string '500.56' (length=6)*/
//外部變數
?>
7_1.php內容:
<?php
$uname = empty($_post['uname']) ? '沒有填寫名字' : $_post['uname'];
$age = empty($_post['uname']) ? '沒有填寫年齡' : $_post['age'];
$tel = empty($_post['uname']) ? '沒有填寫**' : $_post['tel'];
$address = empty($_post['uname']) ? '沒有填寫位址' : $_post['address'];
$qq = empty($_post['uname']) ? '沒有填寫qq' : $_post['qq'];
$msg = empty($_post['uname']) ? '沒有填寫自我評價' : $_post['msg'];
007 PHP變數和函式相互轉換
function write text 定義function write 函式 function writebold text 定義function write 函式 myfunction write 定義變數 myfunction 你好 由於變數後面有括號,所以找名字相同的function函式 p...
php基礎知識
2.3 語法 就像前面提到的一樣,你可以混合編寫你的php 和html 因此你必須有辦法將兩者區別開來。以下就是你可以採用的幾種方法。你可以選用其中一種你最適應的並且就這樣堅持這種方法!從html中分離 以下是可以使用的方法 注釋 php支援c,c 和unix風格的注釋方式 c,c 風格多行注釋 c...
PHP基礎知識
php的特點 php的型別有哪些 指令碼語言 解釋型弱型別 物件導向 面向過程 在php中,所有使用者定義的函式 類和關鍵字詞 例 if else echo 等等 在php中,所有變數都對大小寫敏感 標量型別 boolean integer float double string 符合型別 arra...