Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View technosmarter's full-sized avatar
💭
Development of thoughts

Techno Smarter technosmarter

💭
Development of thoughts
View GitHub Profile
@technosmarter
technosmarter / gist:bb898381b2f5798a0a99796cb08ad531
Last active March 15, 2019 16:52
PHP intro code for begiiners .
PHP is one of the best programming language that is useful for website development . PHP development for beginners.
PHP designed by Rasmus Lerdorf and developed by Zend Technologies in 1994 .
Introdction to PHP -
PHP is a server side scription langauge that is used to develop a website .
PHP Initial code -
Variables are store the different type of data that is known as data type Various data type has performed a different task. PHP supports many data types written below.
• String
"Hello"
• Integer
int 20;
• Float (Floating point numbers )
float 34.5;
@technosmarter
technosmarter / gist:6f6b8d39aae7922e83458d8d8cc91d93
Created March 15, 2019 17:13
PHP String Function examples
The strinng functions work on String . String functions are various type of function .
String Functions In php -
strlen() Find out the string length
<?php
echo strlen("Learn PHP "); // outputs 9
?>