Skip to content

Instantly share code, notes, and snippets.

View pktharindu's full-sized avatar
🚀
Building awesome stuff!

P. K. Tharindu pktharindu

🚀
Building awesome stuff!
View GitHub Profile
@MrPunyapal
MrPunyapal / 1 Types.md
Last active February 5, 2025 07:37
Types In PHP

Atomic Types (Built-in and Scalar)

// Built-in types
$variable = null;             // null type

// Scalar types
$boolVar = true;              // bool type
$intVar = 42;                 // int type
$floatVar = 3.14;             // float type