PHP Data types in hindi
Data type in PHP Variable विभिन्न प्रकार के डेटा को स्टोर कर सकते हैं, और विभिन्न Data type अलग-अलग काम कर सकते हैं। PHP निम्नलिखित Data types का समर्थन करती है: String Integer Float Boolean Array Object Null String In PHP in hindi String एक वर्णों का क्रम होता है(Character array is called String) Example:- "hello would"; String को हम सिंगल या डबल quotes के अंदर लिखते हैं Example:- 'Hello would'; or "Hello would"; Output:-Hello would PHP Integer एक integer डेटा टाइप केवल integer वैल्यू को स्टोर करती है। यह दशमलव संख्या को स्टोर नहीं करती है। integer range:-2147483648 to 2147483647 Integer के लिए नियम: एक integer में कम से कम एक digit होना चाहिए| एक integer में दशमलव बिंदु(float point) नहीं होना चाहिए एक पूर्णांक(integer) positive(सकारात्मक) या negative(नकारात्मक) हो सकता है Integer को Decimal (base 10), hexadecimal (base 16), octal (base 8) और binary (base 2) में प्रदर्शित किया जा सकत...