Write a PHP script to select first 5 words from the following string

  • برمجة بي اتش بي

Write a PHP script to select first 5 words from the following string.

Sample String : 'The quick brown fox jumps over the lazy dog'

Pictorial Presentation:

الأجوبة

<?php
$my_string = 'The quick brown fox jumps over the lazy dog';
echo implode(' ', array_slice(explode(' ', $my_string), 0, 5))."\n";
?>

Sample Output:

The quick brown fox jumps
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...