[PHP網路編程從入門到精通]-3-4.php:使用settype轉換變數型態

[PHP網路編程從入門到精通]-3-4.php:使用settype轉換變數型態

[PHP網路編程從入門到精通]-3-4.php:使用settype轉換變數型態

 

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8">
<title>3-4.php:使用settype轉換變數型態</title>
</head>
<body>
<?php
//PHP settype轉換變數型態語法:settype(mixed var,string type)
header("Content-Type:text/html; charset=utf-8");
//---------------------
$foo="5bar";//定義字串變數
$bar=true;//定義布零變數
echo"foo=";
echo$foo;
echo"<br>";//輸出html換行
echo"bar=";
echo$bar;
echo"<br>";
echo"string->integer";
echo"<br>";
settype($foo,"integer");
echo"boolean->integer";
settype($bar,"integer");
echo"<br>";
echo"foo=";
echo$foo;
echo"<br>";
echo"bar=";
echo$bar;
echo"<br>";?>
</body>
</html>



 



發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *