Converting String To Int Php Code Example


Example 1: php string to int


intval($string);

Example 2: convert to int php


$myintvariable = intval($myvariable);

Example 3: Convert a String to a Number in PHP


phpCopy$variableName = (int)$stringName
$variableName = (float)$stringName

Example 4: convert string to int php


intval ( mixed $var [, int $base = 10 ] ) : int

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy