3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gethashtags($text) { //Match the hashtags preg_match_all('/(^|[^a-z0-9_])#([a-z0-9_]+)/i', $text, $matchedHashtags); $hashtag = ''; // For each hashtag, strip all characters but alpha numeric if(!empty($matchedHashtags[0])) { foreach($matchedHashtags[0] as $match) { $hashtag[] = preg_replace("/[^a-z0-9]+/i", "", $match); } } //to remove last comma in a string //return rtrim($hashtag, ','); return $hashtag; } //usage $text = "dfd'fdfd%#df"; print_R(gethashtags($text));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: [] operator not supported for strings in /in/MAN8N:11 Stack trace: #0 /in/MAN8N(20): gethashtags('dfd'fdfd%#df') #1 {main} thrown in /in/MAN8N on line 11
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
87.81 ms | 401 KiB | 8 Q