Jump to content

[SOLVED] changing data type


hasanatkazmi

Recommended Posts

how to declare $var as int in PHP: you don't.

 

secondly how to cast a variable  like () in PHP:

 

if you want the integer value of a string, use intval($string). If you need to determine if a value is a number, you can use is_numeric().

 

to test whether a value is an integer, I use

 

if (intval($string) == $string) {}

 

 

Link to comment
Share on other sites

Yeah PHP is a loosely typed language. All of the following is acceptable but would not work in c/c++ without some trickery.

 

$var = 1;

$var = 1.1;

$var = "Bob";

 

If you tried to write that code in c/c++ you'd get some nasty errors.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.