php-namespaces-in-hindi

Introduction to PHP Namespaces Namespaces एक तरह के डेटा को एक साथ bind करने के लिए यूज़ किये जाते है। साथ ही ये same नाम की classes एक project में यूज़ करने के लिए भी उपयोगी है। जैसा की आपको पता है की आप एक ही नाम की classes अपने project में यूज़ नहीं कर … Read more

php-strval-in-hindi

Introduction to PHP strval() Function PHP strings के लिए बहुत ही अच्छा support provide करती है। PHP 50 से भी अधिक ऐसे functions provide करती है जो सिर्फ strings के साथ ही कार्य करते है। Strings के लिए यह support PHP का एक feature भी है। PHP में available functions द्वारा आप कई तरह से strings … Read more

php-strings-in-hindi

Introduction to PHP Strings जब बहुत से characters को एक साथ sequence में लिखा जाता है तो वे एक string का निर्माण करते है। उदाहरण के लिए India एक string है। ये i,n,d,i,a characters से मिलकर बनी है। एक string निचे दिए गए elements से मिलकर बनी हो सकती है। Letters – एक string small letters … Read more

php-include-and-require-in-hindi

PHP include Statement PHP में आप किसी एक file में दूसरी file को include कर सकते है। यदि आप कोई ऐसी functionality implement कर रहे है जो आपके project की ज्यादातर files में common है तो उसे आपको हर file में अलग से implement करने की आवश्यकता नहीं है। आप ऐसी एक ही file create कर सकते … Read more

php-interfaces-in-hindi

Introduction to PHP Interfaces एक interface द्वारा आप ऐसे methods की list specify कर सकते है जिन्हें एक class द्वारा implement करना आवश्यक होता है। Interface में define किये गए methods की कोई body नहीं होती है। Interface को implement करने वाली class द्वारा सभी methods की body provide किया जाना आवश्यक होता है। ऐसा … Read more

php-inheritance-in-hindi

Introduction to PHP Inheritance Inheritance एक object oriented programming feature है। जिस प्रकार एक संतान अपने माता पिता की सम्पति को inherit (विरासत के रूप में प्राप्त) करती है, उसी प्रकार एक class किसी दूसरी class की properties और functions को inherit कर सकती है। जिस class को inherit किया जाता है वह parent या base class कहलाती है। … Read more

php-abstract-classes-in-hindi

Introduction to PHP Abstract Classes PHP5 में abstract classes और methods को introduce किया गया है। Abstract classes और methods object oriented programming के abstraction feature को implement करने के लिए use की जाती है। Abstraction एक process होती है जिसमे programmer unnecessary data को hide कर लेता है और केवल वही data show करता है जो end … Read more

php-constructor-destructor-in-hindi

Introduction to PHP Constructor Constructor एक function होता है जो class के अंदर declare किया जाता है। जब भी class का कोई नया object create किया जाता है तो class constructor को automatically call करती है। Constructor उन situations के लिए महत्वपूर्ण होता है जब object को use करने से पहले आप कोई intialization perform … Read more

php-properties-in-hindi

Introduction to PHP Properties PHP में class member variables को properties कहा जाता है। हालाँकि इन्हें attributes और fields के नाम से भी define किया जाता है लेकिन standard form में इन्हें properties ही कहा जाता है। एक property class से related data को store करती है। जिस प्रकार किसी छात्र के identity card पर उस छात्र से … Read more

php-visibility-in-hindi

Introduction to PHP Visibility किसी भी web application का secure होना अति आवश्यक होता है। यदि आपकी web application secure नहीं है तो कोई भी इसे आसानी से break कर सकता है और आपके users का private और महत्वपूर्ण data access कर सकता है। उदाहरण के लिए classes में आपकी application से related महत्वपूर्ण data properties के रूप में store किया … Read more