Skip to content

Instantly share code, notes, and snippets.

View mpbstrd's full-sized avatar
:octocat:
probably coding

matt mpbstrd

:octocat:
probably coding
  • Development Bank of the Philippines
  • Philippines
  • 13:04 (UTC +08:00)
  • X @drazihrac
View GitHub Profile
@mpbstrd
mpbstrd / hashtag.php
Created September 8, 2018 08:55 — forked from HendrikEduard/hashtag.php
A PHP script to create hashtags.
<?php
/*
* Create Hashtags
*/
$string = 'This is the #content the user #wrote';
$explode = explode(' ', $string);
$hashtag = COUNT($explode);
@HendrikEduard
HendrikEduard / hashtag.php
Last active December 9, 2021 03:02
A PHP script to create hashtags.
<?php
/*
* Create Hashtags
*/
$string = 'This is the #content the user #wrote';
$explode = explode(' ', $string);
$hashtag = COUNT($explode);