moawia abdullah نشر 27 أغسطس 2018 أرسل تقرير نشر 27 أغسطس 2018 ما الفرق بين ()substr_replace و هذا الدالة ()str_replace اقتباس
0 Wissem Djerri نشر 29 أغسطس 2018 أرسل تقرير نشر 29 أغسطس 2018 str_replace — Replace all occurrences of the search string with the replacement string. Example for str_replace() <?php echo str_replace("world","siva","Hello world!"); ?> substr_replace - The function substr_replace introduces some additional functionality to compliment str_replace. substr_replace is a more mathematically based replace function, which relies on starting points and lengths to replace parts of strings, as opposed to searching and replacing. اقتباس
0 ابراهيم محمد11 نشر 12 يونيو 2020 أرسل تقرير نشر 12 يونيو 2020 (معدل) ()substr_replace : يستبدل جزء من السلسلة المحرفية (string) بشيء آخر <?php // substr_replace() تستبدل جزء من السلسلة المحرفية بشيء آخر $mystring = "The quick brown fox jumps over the lazy dog";//السلسلة المحرفية المراد تطبيق عملية الاستبدال فيها /* ابدأ من المحرف ذو الفهرس 16 وبطول 3 محارف ستتشكل لديك سلسلة من 3 محارف قم باستبدالها بالكلمة cat */ echo substr_replace($mystring,"cat",16,3) , "</br>";//The quick brown cat jumps over the lazy dog ()str_replace : يستبدل تكرارات جزء من سلسلة بقيمة أخرى <?php // str_replace() يستبدل تكرارات جزء من السلسلة بقيمة أخرى $mystring = "The quick brown fox jumps over the lazy dog";//السلسلة المحرفية المراد تطبيق عملية الاستبدال عليها echo str_replace("dog","rat",$mystring);//The quick brown fox jumps over the lazy rat لاحظ في الكود السابق أنه تم استبدال السلسلة "dog" بالسلسلة "rat" في السلسلة mystring$ تم التعديل في 12 يونيو 2020 بواسطة ابراهيم محمد11 اقتباس
السؤال
moawia abdullah
ما الفرق بين ()substr_replace و هذا الدالة ()str_replace
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.