简体   繁体   中英

Setting Variable Types in PHP

I know that I can do something like

$int = (int)99; //(int) has a maximum or 99

To set the variable $int to an integer and give it a value of 99 .

Is there a way to set the type to something like LongBlob in MySQL for LARGE Integers in PHP?

No. PHP does what is called automatic type conversion.

In your example

$int = (int)123;

the "(int)" just assures that at that exact moment 123 will be handled as an int.

I think your best bet would be to use a class to provide some sort of type safety.

No, the type LongBlob is specific to MySQL. In PHP it is seen as binary data (usually characters), if you tried to convert it to an int it would take the first 32 bits of data (platform dependent) and push that into the variable.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM