“string cek php adalah int” Kode Jawaban

PHP Periksa apakah variabel adalah int

// Check if variable is int
$id = "1";

if(!intval($id)){
  throw new Exception("Not Int", 404);
}
else{
	// this variable is int
}
Envious Earthworm

PHP Periksa apakah string atau nomor

 <?php if (is_numeric(887)) { echo "Yes"; } else { echo "No"; } ?>
Faithful Flatworm

string cek php adalah int

<?php
// combination of is_int and type coercion
// FALSE: 0, '0', null, ' 234.6',  234.6
// TRUE: 34185, ' 34185', '234', 2345
$mediaID =  34185;
if( is_int( $mediaID + 0) && ( $mediaID + 0 ) > 0 ){
    echo 'isint'.$mediaID;
}else{
    echo 'isNOTValidIDint';
}
?>
Healthy Hippopotamus

PHP Periksa apakah string atau nomor

 <?php if (is_numeric("cake")) { echo "Yes"; } else { echo "No"; } ?>
Faithful Flatworm

Jawaban yang mirip dengan “string cek php adalah int”

Pertanyaan yang mirip dengan “string cek php adalah int”

Lebih banyak jawaban terkait untuk “string cek php adalah int” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya