Created
June 21, 2023 14:18
-
-
Save SitesByYogi/0f675b368b9ab9b1b377a19a300b7fbe to your computer and use it in GitHub Desktop.
PHP Variables and Data Types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$name = "John Doe"; // string | |
$age = 25; // integer | |
$price = 9.99; // float | |
$isStudent = true; // boolean | |
$fruits = array("apple", "banana", "orange"); // array | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment