arrays - PHP Show Differences -


मेरे पास दो स्ट्रिंग हैं:

  $ stringA = "1,2,3,4 "; $ StringB = "1,2,4,5";  

मैं $ stringB से मान चुनना चाहता हूं जो कि $ stringA में नहीं हैं।

कैसे क्या मैं ऐसा कर सकता हूं? विस्फोट और सरणी_एफ़िफ़ का एक संयोजन आपको वहां मिलना चाहिए।

Pre> array_diff (विस्फोट (',', $ stringB), विस्फोट (',', $ stringA));


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? -