3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text="سلام دوستان خسته نباشید تو ‌این‌ شبِ‌زیبا پاییز برایت ‌آرزو می‌کنم رویایی‌که هیچ‌وقت، پایان نداشته باشه! و آرزوهایی‌که پرشور باشه‌و از بینشون یه‌چندتاییش برآورده بشه ایشالا امشب‌که ای مهربونت‌رو واسه، این‌که "; $create_subject = function ($text){ $stop_words = ['ها', 'های', 'هایی', 'دوستان', 'سلام', 'خسته', 'نباشید']; while(1){ $text = trim($text); preg_match("/^([^ ]+)/", $text, $first_word); if (isset($first_word[1]) && in_array($first_word[1], $stop_words)){ $text = preg_replace("/^".$first_word[1]."/", "", $text); } else { break; } } return $text; }; echo $subject = implode(' ', array_slice(explode(' ', $create_subject($text)), 0, 5)).'..؟';
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
تو ‌این‌ شبِ‌زیبا پاییز برایت..؟
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 تو ‌این‌ شبِ‌زیبا پاییز برایت..؟

preferences:
221.72 ms | 402 KiB | 287 Q