php - Parse error: syntax error, unexpected ',', expecting '}' in here on line 3 -


  फ़ंक्शन वैध टेक्स्ट ($ इनपुट, $ min = शून्य, $ max = null) {if (! (Empty ($ मिनट) और amp; खाली ($ अधिकतम)) {$ text = "^ [a-zA-z \ s0- 9] {$ min, $ max} + $"; } और {$ text = "/ ^ [a-zA-Z \ s0- 9] + $ /"; } यदि (preg_match ($ पाठ, $ इनपुट)) {वापस सत्य; } अन्य {वापसी झूठी; }}  

समस्या क्या है? क्षमा करें नौसिखिया समस्या

समस्या पंक्ति में है:

  $ पाठ = "^ [a-zA-Z \ s0- 9] {$ min, $ max} + $";  

समस्या यह है कि {$ var} PHP में एक विशेष सिंटैक्स है $ var, $ var वैध वैरिएंबल नाम नहीं है, इसलिए {$ var, $ var} अमान्य है ...

इसे आज़माएं: < / P>

  $ text = "^ [a-zA-z \ s0- 9] {{$ min}, {$ max}} + $";  

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -