phpにおけるintval()の使用例
2022-01-15 06:45:58
1. intval()関数は、変数の整数値を取得する関数で、文字列型の変数を整数型に変換するためによく使用されます。
2、構文は "intval($var[,$base])"です。
インスタンス
<?php
header("Content-type:text/html;charset=utf-8");
$str = '123.456abc';
$int = intval($str);
echo 'The type of the variable $int is: '.gettype($int).'
';
var_dump($int);
? >
<スパン ナレッジの拡大。
phpでのIntval()と(int)の変換について
<?php
echo "<br/>Value forced conversion: ";
$string="2a";
$string1=intval($string);
echo 'The value of $string1:'. $string1.'Value of $string2:';//single quotes will not output the variable, it will be output as is
$string2=(int)($string);
echo $string2
? >
phpのintval()の使用例についての記事は以上です。phpのintval()の使い方については、BinaryDevelopの過去の記事を検索するか、以下の記事を引き続き閲覧してください。
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン